@extends('master') @section('content')

Vehicle Information

@foreach($vehicle as $veh) @endforeach
Reg. No Model Make Year Color Status Action
{{ $veh->reg_no }} {{ $veh->model }} {{ $veh->make }} {{ $veh->year }} {{ $veh->color }} @if($veh->status == 100) Active @elseif($veh->status == 0) Inctive @endif Edit
@endsection @push('scripts') @endpush