@extends('template.app') @section('meta') @endsection @section('title') Assign Inventory @endsection @section('styles') @endsection @section('content')
@csrf @method('POST')
Model VIN No. Interior Color Exterior Color Manufacturing Year
{{ $product['car_name'] }} {{ $product['vin_number'] }} {{ $product['interior_color'] }} {{ $product['exterior_color'] }} {{ $product['manufacturing_year'] }}
@if(isset($data) && $data->isNotEmpty()) @foreach($data as $row) @endforeach @endif
Customer ID Booking Date Customer Name Location On Road Price Total Received Amount Due Amount Action
{{ $row->id }} {{ \Carbon\Carbon::parse($row->booking_date)->format('d-m-Y H:i:s') }} {{ $row->customer_name }} {{ $row->branch_name }} {{ $row->on_road_price }} {{ $row->received_amount }} {{ $row->due_amount }}
@endsection @section('scripts') @endsection