| Name: |
{{ $transporter->transporter_name ?? '' }} |
| Transporter Code: |
{{ $transporter->transporter_code ?? '' }} |
| Mobile No.: |
{{ $transporter->mobile_number ?? '' }} |
| Email: |
{{ $transporter->email ?? '' }} |
| Contact Person Name: |
{{ $transporter->contact_person_name ?? '' }} |
| Contact Person Mobile No.: |
{{ $transporter->contact_mobile_number ?? '' }} |
| State: |
{{ $transporter->states->state_name ?? '' }} |
| District: |
{{ $transporter->districts->district_name ?? '' }} |
| Taluka: |
{{ $transporter->talukas->sub_district_name ?? '' }} |
| City: |
{{ $transporter->cities->city_name ?? '' }} |
| Pincode: |
{{ $transporter->pincode ?? '' }} |
| Pick Up States: |
{{ $transporter->getPickupStateNamesAttribute() ?? '' }} |
| Pick Up Districts: |
{{ $transporter->getPickupDistrictNamesAttribute() ?? '' }} |
| Address: |
{{ $transporter->address ?? '' }} |
| Status: |
@php
$status = [
0 => [
'text' => 'Deactive',
'class' => 'badge badge-warning badge-pill',
],
1 => [
'text' => 'Active',
'class' => 'badge badge-info badge-pill',
],
];
$current = $status[$transporter->status] ?? [
'text' => 'Unknown',
'class' => 'badge rounded-pill bg-secondary',
];
@endphp
{{ $current['text'] }}
|
| Created By: |
{{ $transporter->users->name ?? '-' }} |
| Created At: |
{{ $transporter->created_at->format('d-m-Y h:i A') ?? '' }} |