@extends('adminlte::page')
@section('title', 'Brands - MobileSentrix Admin')
@section('content_header')
@stop
@section('content')
@if(session('success'))
{{ session('success') }}
@endif
@if(session('error'))
{{ session('error') }}
@endif
| ID |
Image |
Name |
Slug |
Products |
Status |
Actions |
@foreach($brands as $brand)
| {{ $brand->id }} |
@if($brand->image)
@else
No image
@endif
|
{{ $brand->name }} |
{{ $brand->slug }} |
{{ $brand->products_count }}
|
@if($brand->is_active)
Active
@else
Inactive
@endif
|
|
@endforeach
@stop
@section('js')
@stop