@extends('adminlte::page') @section('title', 'Brands - MobileSentrix Admin') @section('content_header')

Brands

Add New Brand
@stop @section('content') @if(session('success'))
{{ session('success') }}
@endif @if(session('error'))
{{ session('error') }}
@endif
@foreach($brands as $brand) @endforeach
ID Image Name Slug Products Status Actions
{{ $brand->id }} @if($brand->image) {{ $brand->name }} @else No image @endif {{ $brand->name }} {{ $brand->slug }} {{ $brand->products_count }} @if($brand->is_active) Active @else Inactive @endif
@csrf @method('DELETE')
@stop @section('js') @stop