@extends('admin.layouts.admin') @section('title','الوظائف الحكومية') @section('content')
الرئيسية
الوظائف الحكومية
@if(count($errors) > 0 ) @endif @if(session()->has('success'))
{{ session()->get('success') }}
@endif
@include('admin.government_jobs.create-modal')
@foreach ($GovernmentJobs as $GovernmentJob) @endforeach
# صوره عنوان الوظيفة حالة الوظيفة تاريخ الانشاء العمليات
{{ $loop->iteration }} @if($GovernmentJob->image) {{ $GovernmentJob->title }} @else {{ $GovernmentJob->title }} @endif {{ $GovernmentJob->title }} {{ $GovernmentJob->status==1? 'مفعل':'غير مفعل' }} {{ $GovernmentJob->created_at()}} @include('admin.government_jobs.edit-modal',['department'=>$GovernmentJob]) @include('admin.government_jobs.delete-modal',['department'=>$GovernmentJob])
{{ $GovernmentJobs->links() }}
@endsection