@extends('layouts/contentNavbarLayout')
@section('title', 'Articles')
@section('content')
| Title Ar |
Title En |
Type event |
Enabled |
Actions |
@forelse ($events as $event )
| {{ $event->title_ar }} |
{{ $event->title_en }} |
{{ $event->type_event }} |
@if( $event->enabled == 1 )
Active
@else
Inactive
@endif
|
|
@empty
|
No department found !
|
@endforelse
@endsection