@extends('layouts.app') @section('title', 'Brand List') @section('content')

Brand List

@if(session('success')) @elseif(session('error')) @endif
@forelse($brands as $index => $brand) @empty @endforelse
# Name Code Description Actions
{{ $index + 1 }} {{ $brand->name }} {{ $brand->code }} {{ $brand->description ?? '-' }}
@csrf @method('DELETE')
No brands found.
@endsection @push('scripts') @endpush