@extends('admin.layout.app') @section('content')
@forelse ($makes as $key => $maker) @empty @endforelse
# Name Status Action
{{ $key + 1 }} {{ $maker->name }} @if ($maker->status == 'active') Active @else Inactive @endif
@csrf @method('DELETE')
No makers found.
@if(method_exists($makes, 'links'))
{{ $makes->links('pagination::bootstrap-4') }}
@endif
@endsection