14 lines
822 B
PHP
14 lines
822 B
PHP
@extends('portal::layouts.customer')
|
|
@section('title', $shipment->ref_no)
|
|
@section('content')
|
|
<section class="content-header"><h1>@lang('portal::lang.shipment_tracking'): {{ $shipment->ref_no }}</h1></section>
|
|
<section class="content">
|
|
<div class="box box-primary"><div class="box-body">
|
|
<p><strong>@lang('portal::lang.status'):</strong> {{ $statuses[$shipment->status] ?? $shipment->status }}</p>
|
|
@if($shipment->driver)<p><strong>@lang('tms::lang.driver'):</strong> {{ $shipment->driver->name }}</p>@endif
|
|
@if($shipment->vehicle)<p><strong>@lang('tms::lang.vehicle'):</strong> {{ $shipment->vehicle->plate_number }}</p>@endif
|
|
@if($shipment->project)<p><strong>@lang('tms::lang.linked_project'):</strong> {{ $shipment->project->name }}</p>@endif
|
|
</div></div>
|
|
</section>
|
|
@endsection
|