{{-- resources/views/admin/brand.blade.php --}} @extends('layouts.layout-admin') @section('title', 'Brands') @section('header_title', 'Brands') @section('header_subtitle', 'Manage your brands') @section('content')

Brands List

@forelse($brands as $brand) @empty @endforelse
Name Slug Description Products Count Actions
{{ $brand->name }} {{ $brand->slug }} {{ Str::limit($brand->description, 50) }} {{ $brand->products_count }} Products
@csrf @method('DELETE')

No brands found

{{ $brands->withQueryString()->links() }}
@foreach ($brands as $brand) @endforeach
@endsection @push('styles') @endpush @push('scripts') @endpush