@extends('backend.app') @section('title', 'Store Managers') @section('content')
| # | Name | Store | Status | Created | |
|---|---|---|---|---|---|
| {{ $loop->iteration }} | {{ $manager->name }} | {{ $manager->email }} | {{ $manager->store?->name ?? '—' }} | @php $bg = $manager->status === 'active' ? '#4CAF50' : '#ccc'; @endphp {{ ucfirst($manager->status) }} | {{ $manager->created_at->format('M d, Y') }} |
| No managers found. | |||||