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

Brand: {{ $brand->name }}

Edit Back to List
@stop @section('content')

Brand Information

@if($brand->image)
{{ $brand->name }}
@endif
ID {{ $brand->id }}
Name {{ $brand->name }}
Slug {{ $brand->slug }}
Status @if($brand->is_active) Active @else Inactive @endif
Products {{ $brand->products->count() }}
Created {{ $brand->created_at->format('M d, Y H:i') }}
Updated {{ $brand->updated_at->format('M d, Y H:i') }}
@if($brand->description)
Description

{{ $brand->description }}

@endif

Products with this Brand ({{ $brand->products->count() }})

@if($brand->products->count() > 0) @foreach($brand->products as $product) @endforeach
SKU Name Price Stock Actions
{{ $product->sku }} {{ $product->name }} ${{ number_format($product->price, 2) }} @if($product->stock_quantity <= $product->low_stock_threshold) {{ $product->stock_quantity }} @else {{ $product->stock_quantity }} @endif
@else

No products associated with this brand.

@endif
@stop @section('js') @stop