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