@extends('voyager::master') @section('css') @stop @section('page_title', 'Viewing Supplier Brand') @section('page_header')

Viewing Ad   Return to List

@stop @section('content')

Name

{{ $sb->name }}

Supplier

{{ \App\Models\Supplier::where("id", $sb->supplier_id)->first()->name }}

Product Count

{{ $sb->products->count() }}

Is Active

{{ $sb->is_active ? "Yes" : "No" }}

Date Added

{{ $sb->created_at->format("d-m-Y") }}

@stop @section('javascript') @stop