@extends('admin.layouts.app') @section('title', 'Brands') @section('content')
@forelse($brands as $brand) @empty @endforelse
# Brand Products Status
{{ $brand->sort_order }}
@if($brand->logo) {{ $brand->name }} @else
{{ strtoupper(substr($brand->name,0,1)) }}
@endif {{ $brand->name }}
{{ $brand->products_count }} {{ $brand->is_active ? 'Active' : 'Hidden' }}
@csrf @method('DELETE')
No brands yet
Add your first brand — Dell, HP, Lenovo…
@if($brands->hasPages())
{{ $brands->links() }}
@endif
@endsection