@extends('admin.layouts.app') @section('title', 'Daftar Mobil') @section('content')
@if(session('success'))
{{ session('success') }}
@endif

Daftar Mobil

@if(session('error'))
{{ session('error') }}
@endif
@foreach($mobil as $m) @endforeach
Foto Nama Mobil Plat Nomor Status Aksi
@if($m->foto) Foto {{ $m->nama }} @else No image @endif {{ $m->nama }} {{ $m->plat_nomor }} {{ ucfirst($m->status) }}
@csrf @method('DELETE')
@foreach($mobil as $m) @endforeach @endsection @push('scripts') @endpush