@extends('admin.layouts.app') @section('title', 'Jobs') @section('content')

{{__('Jobs')}}

{{__('All Jobs listing')}}

@if (Session::has('message'))
{{ Session::get('message') }}
@endif @if(!empty($jobs)) @php $i=1; @endphp @foreach($jobs as $datas) @php $i++; @endphp @endforeach @else @endif
{{__('ID')}} {{__('Title')}} {{__('Arabic Title')}} {{__('Description')}} {{__('Arabic Description')}} {{__('Status')}} {{__('Created At')}} {{__('Action')}}
{{$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
{{__('No record found')}}
@endsection