@extends('layouts.admin') @section('title', 'Brands') @section('breadcrumb') @endsection @section('content')

Brands List

@forelse($brands as $brand) @empty @endforelse
Logo Name Slug Status Actions
@if($brand->logo) {{ $brand->name }} @else No Logo @endif {{ $brand->name }} {{ $brand->slug }} {{ $brand->is_active ? 'Active' : 'Inactive' }} Edit
@csrf @method('DELETE')
No brands found.
@endsection