@extends('layouts.app') @section('content')
@if($brand->logo) {{ $brand->name }} @else
@endif

{{ $brand->name }}

Created: {{ $brand->created_at->format('M d, Y H:i A') }}
Updated: {{ $brand->updated_at->format('M d, Y H:i A') }}

Slug:

{{ $brand->slug }}

Status:

{{ $brand->is_active ? 'Active' : 'Inactive' }}

Total Products:

{{ $brand->products->count() }} Products

Description:

{{ $brand->description ?? 'No description available.' }}
@endsection