@extends('layouts.app') @section('title', 'وردية '.$shift->code.' - '.config('app.name')) @section('breadcrumb') ورديات العمل {{ $shift->code }} @endsection @section('content')

{{ $shift->name_ar }}

{{ $shift->code }}

البداية
{{ optional($shift->start_time)->format('H:i') }}
النهاية
{{ optional($shift->end_time)->format('H:i') }}
دقائق السماح
{{ (int) ($shift->grace_minutes ?? 0) }} د
وردية ليلية
{{ $shift->is_night ? 'نعم' : 'لا' }}
الحالة
{{ $shift->is_active ? 'نشط' : 'غير نشط' }}
موظفون مرتبطون
{{ $shift->employees_count ?? 0 }}
ورديات إنتاج
{{ $shift->production_shifts_count ?? 0 }}
@if($shift->name_en)
الاسم بالإنجليزية
{{ $shift->name_en }}
@endif
@endsection