@extends('admin.dash_layouts.main') @section('title') {{ 'Dashboard page' }} @endsection @section('content')

Manage Vehicle

@if (session()->has('success')) @endif

Vehicle list

@foreach ($data as $data) @php $category = App\Models\VehicleCategory::where('id', $data->vehi_cate)->first()->name; @endphp @endforeach
Id Vehicle Category Action
{{ $data->id }} {{ $data->name }}{{ $category }} Edit Delete
@endsection