@extends('layouts.user') @section('content')

{{ __("Manage Jobs") }}

{{ __("Ready to jump back in?") }}
{{__("Add new job")}}
@include('admin.message')

{{ __("Manage Jobs") }}

@if($rows->total() > 0) @foreach($rows as $row) @endforeach @else @endif
{{ __("Title") }} {{ __('Location')}} {{ __('Category')}} {{ __('Status')}} {{ __('Date')}}
{{$row->title}} {{$row->location->name ?? ''}} {{$row->category->name ?? ''}} {{ $row->status }} {{ display_date($row->updated_at)}}
{{__("No data")}}
{{$rows->appends(request()->query())->links()}}
@endsection @section('footer') @endsection