@php $isExport = $isExport ?? false; @endphp @extends('layouts.master') @section('title') {!! $wsData ? 'Worksheet: ' . $wsData->ws_code . ' - ' . $wsData->ws_title : 'Worksheet' !!} @endsection @section('content')
{!! $wsData ? 'Worksheet: ' . htmlspecialchars($wsData->ws_code) . ' - ' . htmlspecialchars($wsData->ws_title) . '' : 'Worksheet' !!}
@csrf

@if (\Illuminate\Support\Facades\File::exists(resource_path('views/modules/reports/worksheet/tables/' . ($wsData ? $wsData->ws_code : 'test') . '.blade.php'))) @include('modules.reports.worksheet.tables.' . $wsData->ws_code) @endif
@endsection @section('js') @endsection