@extends('layouts.admin') @section('title', 'Brands') @section('page_title', 'Brands') @section('content')
Add New Brand
@if($search)
Clear Filter Found {{ $brands->total() }} result(s)
@endif
@forelse($brands as $brand) @empty @endforelse
Brand Name Products Status Actions
{{ $brand->name }}
{{ $brand->slug }}
{{ $brand->products->count() }} @if($brand->is_active) Active @else Inactive @endif
@csrf @method('DELETE')
@if($search) No brands found matching "{{ $search }}" @else No brands found @endif
@if($brands->count())
@endif @endsection