@extends('admin.layouts.app') @section('content')

Jobs

@foreach ($data as $key => $result) @endforeach
Id Title Type Status Created At Actions
{!! $result->id !!} {!! Str::limit(ucwords($result->title), 20, '...') !!} {!! $result->type?->name !!} {!! strtoupper($result->status) !!} {!! strtotime($result->created_at) !!} {!! date(ADMIN_TIMESTAMP_FORMAT, strtotime($result->created_at)) !!} {{-- --}} @can('job.edit') @endcan @can('job.duplicate') @endcan @if (filled($result->applications)) @can('application.view') @endcan @endif @can('job.delete')
@csrf @method('DELETE')
@endcan
@endsection @section('footer-js') @endsection