@extends('store.layout.main')
@section('title', 'Branches')
@section('page-header')
| Branch Name | Manager | Niches | Status | Actions | |
|---|---|---|---|---|---|
|
{{ $branch->name }}
@if($currentStore->id === $branch->id)
Current
@endif
|
@php $mgr = $branch->managers->first(); @endphp
@if($mgr)
{{ $mgr->name }}
{{ $mgr->email }}
@else
—
@endif
|
@forelse($branch->niches as $niche)
{{ $niche->name }}
@empty
Not set
@endforelse
|
@if($branch->is_active) Active @else Inactive @endif |
@if($currentStore->id !== $branch->id && $branch->is_active)
@endif
@if($storeRole === 'business_owner')
@endif
|
|
| No branches found. | |||||