@extends('layouts.trackpage') @section('title', 'Vault Details - ' . $vault->tracking_number) @section('content')

Vault Details

Vault Information (#{{ $vault->tracking_number }})

Owner Name: {{ $vault->owner_name }}

Next of Kin: {{ $vault->next_of_kin }}

Category: {{ $vault->category }}

Items: {{ $vault->items }}

Weight: {{ $vault->weight }}

Quantity: {{ $vault->quantity }}

Total Value: {{ $vault->total_value }}

Description: {{ $vault->description }}

Status: {{ $vault->status }}

Date of Deposit: {{ $vault->date_of_deposit }}

Created At: {{ $vault->created_at->format('d M, Y h:i A') }}

Vault Image
@if($vault->image) Vault Image @else

No image available.

@endif
Tracking Countdown

Loading...
Vault Status History
  • {{ $vault->status }}

    {{ $vault->updated_at->format('D, d M Y - h:i A') }}

    {{ $vault->description ?? 'No additional details.' }}

@endsection