@extends('layouts.app') @section('style') @endsection @section('content')
{{ $stats['total'] ?? 0 }}

Total Brands

{{ $stats['active'] ?? 0 }}

Active Brands

{{ $stats['featured'] ?? 0 }}

Featured Brands

{{ $stats['total_products'] ?? 0 }}

Total Products

Export
@forelse($brands as $brand) @empty @endforelse
Logo Brand Name Description Country Products Status Actions
{{ $brand->name }} @if($brand->is_featured)
Featured @endif
@if($brand->description) {{ Str::limit($brand->description, 50) }} @else No description @endif @if($brand->country) {{ $brand->country }} @else - @endif {{ $brand->products_count ?? 0 }} {{ ucfirst($brand->status) }}

No brands found

Add Your First Brand

Showing {{ $brands->firstItem() }} to {{ $brands->lastItem() }} of {{ $brands->total() }} entries

{{ $brands->withQueryString()->links() }}
@endsection @section('script') @endsection