@extends('Layouts.erp_master') @section('content') @php use App\Services\CommonService as Common; $startTimeTx = $CompanyData->tx_start_time; $endTimeTx = $CompanyData->tx_end_time; $flag = false; if (!empty($startTimeTx) || $startTimeTx != '00:00:00') { $startTimeTx = (new DateTime($startTimeTx))->format('H:i'); } if (!empty($endTimeTx) || $endTimeTx == '00:00:00') { $endTimeTx = (new DateTime($endTimeTx))->format('H:i'); } $checked1 = $checked2 = ''; if ($CompanyData->applicable_for == 2) { $checked2 = 'checked'; } else { $checked1 = 'checked'; } if ($CompanyData->schedule_flag == 1) { $flag = true; } @endphp
@csrf {{-- Section --}}
Basic Information
@if (!empty($CompanyData->comp_logo)) @if (file_exists($CompanyData->comp_logo)) Preview @else

File not Found!

@endif @else Preview @endif
@if (!empty($CompanyData->bill_logo)) @if (file_exists($CompanyData->bill_logo)) Preview @else

File not Found!

@endif @else Preview @endif
@if (!empty($CompanyData->cover_image_lp)) @if (file_exists($CompanyData->cover_image_lp)) Preview @else

File not Found!

@endif @else Preview @endif
Configuration



@if (Common::isSuperUser() == true || Common::isDeveloperUser() == true)
Developer Section
Section for Software Element
@php $sysModules = DB::table('gnl_sys_modules') ->where([['is_delete', 0], ['is_active', 1]]) ->select('id', 'module_name', 'module_short_name') ->orderBy('id', 'ASC') ->get(); $i = 0; $selecetedModule = explode(',', $CompanyData->module_arr); @endphp @foreach ($sysModules as $module) @php $i++; if (in_array($module->id, $selecetedModule)) { $CheckText = 'checked'; } else { $CheckText = ''; } @endphp
@endforeach
Section for Website
@else @endif
@include('elements.button.common_button', [ 'back' => true, ])
@endsection