@extends('layouts.app') @section('title') Branch Details @endsection @section('content')
| Branch Name | {{ $branch->name }} |
|---|---|
| Address | {{ $branch->address }} |
| Phone | {{ $branch->phone }} |
| {{ $branch->email }} | |
| Status | @if($branch->status) Active @else Inactive @endif |
| Created At | {{ $branch->created_at->format('d M Y H:i') }} |
| Last Updated | {{ $branch->updated_at->format('d M Y H:i') }} |