{{-- Success Message Component --}} @if (session('Status')) @endif {{-- Search Bar --}}
@if (Auth::user()->role != 'accounting') @endif
{{-- Table Wrapper --}}
@forelse ($soas as $soa) @empty @endforelse
Title Joborder ID Company Name Actions
{{ $soa->jobDraft->jobOrder->title }} {{ $soa->jobDraft->id }} {{ $soa->company }} @if (Auth::user()->role == 'accounting') @endif @if (Auth::user()->role == 'top_management')
@csrf @method('PUT')
@endif @php $editRoute = ''; if (Auth::user()->role == 'sales_assistant') { $editRoute = route('admin.smm.soa.edit', $soa->id); } elseif (Auth::user()->role == 'accounting') { $editRoute = route('admin.smm.soa.edit_particulars', $soa->id); } @endphp
@csrf @method('DELETE')

No Data Found

{{-- Pagination Links --}}
{{-- {{ $list_of_projects->links('vendor.pagination.custom') }} --}}
{{-- @endsection --}}