@extends('layouts.master') @section('title') Manage Vehicle @endsection @section('css') @endsection @section('content') @component('components.breadcrumb') @slot('li_1') Dasboard @endslot @slot('title') Manage Vehicle @endslot @endcomponent
@if(session('success'))
{{ session('success') }}
@endif @if(session('error'))
{{ session('error') }}
@endif Add New Vehicle

List Contact

@foreach($vehicles as $vehicle) @php $detailscomp = DB::table('brand')->where('id', $vehicle->brand ?? '')->first(); $brandname = $detailscomp->name ?? ''; @endphp @endforeach
# Plate Number Car Information Price Information Action
{{++$count}} {{$brandname}} Vehicle Reg. : {{$vehicle->plateno ?? ''}}
Model : {{$vehicle->model ?? ''}}
Max Capacity : {{$vehicle->capacity ?? ''}}
Day : {{$vehicle->priceday ?? ''}}
Weekly : {{$vehicle->priceweek ?? ''}}
Monthly : {{$vehicle->pricemonthly ?? ''}}
@endsection @section('script') @endsection