@extends('account::layouts.account') @section('title','My Jobs') @section('subtitle','Total: ' . $jobs->links()->paginator->total()) @section('content')
@if ($jobs->count()) @foreach($jobs as $job) @endforeach @else @endif
Title Country Type Created at Modified at Status Actions
{{ $job->name }}
by {{ $job->company->name }}
{{ $job->country }} {{ $job->type }} {{$job->created_at->format('d/m/Y') }}
{{ app_date_tohuman($job->created_at->timestamp) }}
{{$job->updated_at->format('d/m/Y') }}
{{ app_date_tohuman($job->updated_at->timestamp) }}
{!! $job->getLabelStatus() !!} @if ($job->published) View @endif Edit
@csrf @method('delete')
Not found
@if ($jobs->hasPages()) @endif
@endsection