@extends('layouts.app') @section('content')
Staff Member

Details for {{ $staff->name }}

@if(session('success')) @endif
Staff Information
Edit
Full Name {{ $staff->name }}
Email Address {{ $staff->email }}
Role {{ $staff->role ? ucfirst(str_replace('_', ' ', $staff->role->name)) : 'N/A' }}
Joined {{ $staff->created_at ? \Carbon\Carbon::parse($staff->created_at)->format('M d, Y') : 'N/A' }}
@endsection