@extends('admin.layouts.app') @section('title', 'Brands Management') @section('content')

Brands Management

Manage your product brands and their information

Total Brands

{{ $brands->count() }}

Active Brands

{{ $brands->where('is_active', true)->count() }}

Inactive Brands

{{ $brands->where('is_active', false)->count() }}

With Logo

{{ $brands->whereNotNull('logo')->count() }}

Showing {{ $brands->count() }} brands

All Brands

@forelse($brands as $brand) @empty @endforelse
Logo Name Description Status Actions
@if($brand->logo) {{ $brand->name }} @else
{{ substr($brand->name, 0, 2) }}
@endif
{{ $brand->name }}
{{ $brand->slug }}
{{ Str::limit($brand->description, 60) }}
@csrf @method('PATCH')
@csrf @method('DELETE')

No Brands Found

Get started by creating your first brand.

Add New Brand
@endsection