@extends('adminlte::page') @section('title', 'Branches Management') @section('content_header')
| ID | Branch Name | Location | Contact | Manager | Members | Created | Actions |
|---|---|---|---|---|---|---|---|
| {{ $branch->id }} |
{{ Str::limit($branch->name, 20) }}
@if($branch->description)
{{ Str::limit($branch->description, 25) }}
@endif
|
{{ Str::limit($branch->location, 15) }} | {{ $branch->contact ?? 'N/A' }} | {{ Str::limit($branch->manager ?? 'N/A', 12) }} | {{ $branch->users()->count() }} | {{ $branch->created_at->format('d M') }} |