@extends('layouts.app') @section('content')
Manufacturers

@if(session('success')) @endif
count() > 0) id="bookings-table" @endif class="table table-bordered align-middle text-center"> @forelse($manufacturers as $manufacturer) @empty @endforelse
ID Logo Name Contact Person Contact Email Country Status Actions
{{ $manufacturer->id }} @if($manufacturer->logo) {{ $manufacturer->name }} @else
@endif
{{ $manufacturer->name }} {{ $manufacturer->contact_person ?? 'N/A' }} {{ $manufacturer->contact_email ?? 'N/A' }} {{ $manufacturer->country ?? 'N/A' }} {{ $manufacturer->is_active ? 'Active' : 'Inactive' }}
{{-- Edit Button --}} @can('update manufacturers') @endcan {{-- View Button --}} @can('view manufacturers') @endcan {{-- Delete Button --}} @can('delete manufacturers')
@csrf @method('DELETE')
@endcan
No manufacturers found.
{{--
{{ $manufacturers->links() }}
--}}
@endsection @push('script') @endpush