@extends('layouts.master') @section('css') @endsection @section('title') {{ __('home.periods') }} @endsection @section('page-header')
@endsection @section('content')
{{-- رسائل الخطأ --}} @if ($errors->any())
خطأ
    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif {{-- رسالة النجاح --}} @if (session()->has('create_department')) @endif {{-- نموذج إضافة فترة --}}
@csrf
{{-- جدول عرض الفترات --}}
@foreach (App\Models\Period::get() as $i => $period) @endforeach
# {{ __('home.pariod_name') }} {{ __('home.pariod_status') }} {{ __('home.pariod_start') }} {{ __('home.pariod_end') }} {{ __('home.notesClient') }}
{{ $i+1 }} {{ $period->pariod_name }} {{ $period->pariod_start }} {{ $period->pariod_end }} {{ $period->notesClient }}
@endsection @section('js') @endsection