@if (Session::has('message'))
{{ Session::get('message') }}
@endif
{{__('ID')}} |
{{__('Title')}} |
{{__('Arabic Title')}} |
{{__('Description')}} |
{{__('Arabic Description')}} |
{{__('Status')}} |
{{__('Created At')}} |
{{__('Action')}} |
@if(!empty($jobs))
@php
$i=1;
@endphp
@foreach($jobs as $datas)
{{$i}} |
{{$datas->title}} |
{{$datas->arabic_title}} |
{{$datas->description}} |
{{$datas->arabic_description}} |
@if($datas->status=='1')
Activated
@else
De-Activated
@endif
|
{{ dateConvertFormat($datas->created_at) }} |
Edit
Delete
|
@php
$i++;
@endphp
@endforeach
@else
{{__('No record found')}} |
@endif