@extends('components.customer_layout') @section('customer-content')
No applications found.
@else| ID | Customer | Service | Office | Status | Actions |
|---|---|---|---|---|---|
| {{ $application->id }} | {{ $application->customer->full_name ?? 'N/A' }} | {{ $application->service->name ?? 'N/A' }} | {{ $application->office->name ?? 'N/A' }} | @php $orders = $application->model::where('order_payment', 1) ->where('id',$application->request_id)->get(); $status = $application->model::where('order_payment', 1) ->where('id',$application->request_id)->first(); $payment=$status->paid_amount; @endphp @if($payment == '') @elseif($payment != '') Paid @endif | @if($payment == '') @elseif($payment != '') Paid @endif |