@extends('layouts.admin') @section('title', $brand->name) @section('page_title', $brand->name) @section('content')
Back to Brands Edit Brand
Brand Information
Brand Name: {{ $brand->name }}
Slug: {{ $brand->slug }}
Status: @if($brand->is_active) Active @else Inactive @endif
@if($brand->description)
Description

{{ $brand->description }}

@endif
@if($brand->logo)
Brand Logo
{{ $brand->name }}
@endif @php $productsCount = App\Models\Product::where('brand_id', $brand->id)->count(); @endphp
Products

{{ $productsCount }}

Total products in this brand

@if($productsCount > 0) View Products @endif
Details
Created: {{ $brand->created_at->format('M d, Y H:i') }}
Updated: {{ $brand->updated_at->format('M d, Y H:i') }}
@csrf @method('DELETE')
@endsection