@php $number=1; @endphp @extends('layouts.master') @section('content')

Dashboard

{{$companies}}

Companies

More info

{{$projects}}

Projects

More info

{{$users}}

User Registrations

More info

{{$quotations}}

Quotations

More info

{{$requests}}

Pending Requests

More info

{{$invoices}}

Pending Invoices

More info

Receipt Vouchers

@foreach($receipts as $key => $receipt) @endforeach
S.No Date Company Invoice # Total Status
{{$key +1}} {{$receipt->date_time}} {{ $receipt->transactionable->quotation->company->name }} {{$receipt->transactionable ? $receipt->transactionable->invoice_no : '' }} {{$receipt->total}} @include('components.datatables_status', [ 'msg' => ($receipt->status) ? 'complete' : 'pending', 'type' => ($receipt->status) ? 'success' : 'danger', ])

View More

Cheques Notifications

@foreach($cheques as $key => $cheque) @endforeach
Company Type Bank/Cheque Clearance Date Bank/Cheque No Total Status
@if(isset($cheque->transactionable->quotation->company)) {{ $cheque->transactionable->quotation->company->name }} @endif @if(isset($cheque->transactionable->lpoout->vendor)) {{ $cheque->transactionable->lpoout->vendor->name }} @endif {{ isset($cheque->transactionable->quotation) ? "Receipt" : "Payment"}} {{$cheque->clearance_date}} {{$cheque->payment_no}} {{$cheque->total}} @include('components.datatables_status', [ 'msg' => ($cheque->status) ? 'complete' : 'pending', 'type' => ($cheque->status) ? 'success' : 'danger', ])

View More

Documents

@foreach($documents as $key => $document) @endforeach
S.No Name Type Date
{{$key +1}} {{$document->name}} {{ $document->type}} {{$document->date}}

View More

Staff Profiles

@foreach($staff_profiles as $key => $staff_profile) @if ($staff_profile->passport_expiry != null && $staff_profile->passport_expiry < $exp_date) @php($number++) @endif @if ($staff_profile->visa_expiry != null && $staff_profile->visa_expiry < $exp_date) @php($number++) @endif @if ($staff_profile->emirates_id_expiry != null && $staff_profile->emirates_id_expiry < $exp_date) @php($number++) @endif @if ($staff_profile->labor_card_expiry != null && $staff_profile->labor_card_expiry < $exp_date) @php($number++) @endif @if ($staff_profile->driver_permit_expiry != null && $staff_profile->driver_permit_expiry < $exp_date) @php($number++) @endif @endforeach
No {{__('models/stafprofile.fields.name')}} Type Expiry date Update

View More

Overdue Invoices

@foreach($overdue_invoices as $key => $invoice) @endforeach
Doc.No Client Start Date Due Date Amount
{{$invoice->invoice_no}} @if(isset($invoice->quotation) && isset($invoice->quotation->company)) {{$invoice->quotation->company->name}} @else N/A @endif {{$invoice->start_date}} {{ $invoice->end_date}} {{$invoice->total_amount}}
@endsection