@extends('layouts.master') @section('title') Outlet Users - {{ $outlet->outlet_name }} @endsection @section('content')

Users - {{ $outlet->outlet_name }}

Back to Outlets {{-- --}}
@if ($outlet->users->count() > 0)
@foreach ($outlet->users as $key => $user) {{-- {{-- --}} @endforeach
# User Name Email Phone Role Status Created At Actions
{{ $key + 1 }} {{ $user->name }} {{ $user->email }} {{ $user->phone ?? 'N/A' }} {{ $user->role->role_name ?? 'Outlet Staff' }} {{ ucfirst($user->status) }} {{ $user->created_at->format('M d, Y') }} --}} {{-- Actions --}}
{{-- --}}
{{-- Hidden delete form --}}
@else

No Users Found

No users have been assigned to this outlet yet.

@endif
@endsection @section('scripts') @endsection