@extends('admin.layout') @section('title', 'Daftar Brand') @section('content')

Kelola Brand

Kelola brand produk

Tambah Brand
@if(session('success'))
{{ session('success') }}
@endif
@if(request('category')) Reset @endif
@forelse($brands as $brand) @empty @endforelse
ID Brand Kategori Produk Status Aksi
{{ $brand->id }}
{{ $brand->name }}
{{ $brand->slug }}
{{ $brand->category->name ?? '-' }} {{ $brand->products_count ?? 0 }} produk @if($brand->is_active) Aktif @else Nonaktif @endif
@csrf @method('DELETE')

Belum ada brand

@if($brands->hasPages())
{{ $brands->links() }}
@endif
@endsection