@extends('layouts.app') @section('main')

Brands

Add Brand
@if (session('success'))
{{ session('success') }}
@endif @if (session('error'))
{{ session('error') }}
@endif @forelse($brands as $brand) @empty @endforelse
ID Name Actions
{{ $brand->id }} {{ $brand->name }} View Edit
@csrf @method('DELETE')
No brands found.
@endsection @push('script') @endpush