@extends('layouts.admin') @section('title', 'Brands') @push('css') @endpush @section('content') @component('admin.dashboard.breadcumb') @endcomponent
@foreach($brands as $brand) @if($brand->image != NULL) @else @endif @if($brand->status == 1) @else @endif @endforeach
Id Name image Description Products Status Action
{{$brand->id}} {{$brand->name}} {{str_limit($brand->description, 50)}} {{$brand->products->count()}}
@endsection @push('js') @endpush