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