@extends('layouts.admin', [ 'title' => 'Staff Working Hours', 'pageTitle' => 'Staff Working Hours', 'active' => 'staff', ]) @section('content')
@csrf @method('PUT')

Set weekly availability, breaks, and closed days for {{ $staff->name }}.

@if (session('status'))

{{ session('status') }}

@endif
Back to Profile Save Working Hours
@include('admin.staff.partials.working-hours-table', ['hours' => $hours])
@if ($staff->avatar_url) {{ $staff->name }} @else
{{ $staff->initials }}
@endif

{{ $staff->name }}

{{ $staff->role ?: 'Staff Member' }}

Weekly hours{{ number_format($summary['weekly_hours'], 1) }}
Working days{{ $summary['working_days'] }}
Breaks{{ $summary['breaks'] }}

Booking rule persistence will be connected with appointment availability logic.

@endsection