@extends('layouts.app', ['class' => 'g-sidenav-show bg-gray-100'])
@section('content')
@include('layouts.navbars.auth.topnav', ['title' => 'Brands'])
|
Brand Name |
Products |
Action |
|
@foreach($brands as $brand)
|
|
{{$brand->products()->count()}}
|
@can('brand edit')
@endcan
@can('brand delete')
@endcan
|
@endforeach
@include('layouts.footers.auth.footer')
@endsection