@extends('admin.layouts.app') @section('title', 'Brands Management') @section('content')
Manage your product brands and their information
Total Brands
{{ $brands->count() }}
Active Brands
{{ $brands->where('is_active', true)->count() }}
Inactive Brands
{{ $brands->where('is_active', false)->count() }}
With Logo
{{ $brands->whereNotNull('logo')->count() }}
| Logo | Name | Description | Status | Actions |
|---|---|---|---|---|
|
@if($brand->logo)
{{ substr($brand->name, 0, 2) }}
@endif
|
{{ $brand->name }}
{{ $brand->slug }}
|
{{ Str::limit($brand->description, 60) }}
|
||