@extends('backend::layouts.app') @section('content') Jobs Create Export jobs @include('backend-job::job.inc.filter') @foreach($jobs as $job) @endforeach
ID Title Applicants Country Salary Featured Home Featured VF Published Created at Actions
{{ $job->id }} @php $shortName = (strlen($job->name) > 64) ? substr($job->name, 0,64) . '...' : $job->name @endphp @if ($job->published) {{ $shortName }} @else {{ $job->name }} @endif
{{ $job->company->name ?? '' }}
{{ (int) $job->count_applyers }} {{ $job->country }}
{{ $job->type }}
{{ $job->salary() }}
{{ app_date($job->created_at) }} Edit @if ($job->published) Show @endif
@endsection