@extends('layouts.admin')
@section('title', 'Brands')
@section('page_title', 'Brands')
@section('content')
| Brand Name |
Products |
Status |
Actions |
@forelse($brands as $brand)
{{ $brand->name }}
{{ $brand->slug }}
|
{{ $brand->products->count() }}
|
@if($brand->is_active)
Active
@else
Inactive
@endif
|
|
@empty
|
@if($search)
No brands found matching "{{ $search }}"
@else
No brands found
@endif
|
@endforelse
@if($brands->count())
@endif
@endsection