@extends('backEnd.layouts.master') @section('title','Brands') @section('content')

Brands

Manage product brands
@forelse($brands as $i => $brand) @empty @endforelse
# Logo Name Slug Products Status Actions
{{ $brands->firstItem() + $i }} @if($brand->logo) @else
@endif
{{ $brand->name }} {{ $brand->slug }} {{ $brand->products_count }} {{ $brand->status ? 'Active' : 'Inactive' }}
@csrf @method('DELETE')
No brands found.
@if($brands->hasPages())
{{ $brands->links() }}
@endif
{{-- Add Brand Modal --}} @endsection