@extends('layouts.app') @section('content')
| Branch Name: | {{ $branch->branch_name }} |
|---|---|
| Branch Code: | {{ $branch->branch_code }} |
| Company: | {{ $branch->company->company_name ?? 'N/A' }} |
| Status: | {!! $branch->status_badge !!} |
| Address: | {{ $branch->address ?? 'N/A' }} |
| Phone: | {{ $branch->phone ?? 'N/A' }} |
| Email: | {{ $branch->email ?? 'N/A' }} |
| Created By: | {{ $branch->creator->name ?? 'System' }} |
|---|---|
| Created At: | {{ $branch->created_at->format('M d, Y H:i:s') }} |
| Last Updated By: | {{ $branch->updater->name ?? 'N/A' }} |
| Last Updated: | {{ $branch->updated_at->format('M d, Y H:i:s') }} |
| Deleted By: | {{ $branch->deleter->name ?? 'System' }} |
| Deleted At: | {{ $branch->deleted_at->format('M d, Y H:i:s') }} |