@extends('layouts.admin') @section('page-title') {{__('Manage Job')}} @endsection @section('breadcrumb')
{{__('Branch')}} | {{__('Title')}} | {{__('Start Date')}} | {{__('End Date')}} | {{__('Status')}} | {{__('Created At')}} | @if( Gate::check('edit job') ||Gate::check('delete job') ||Gate::check('show job')){{__('Action')}} | @endif
---|---|---|---|---|---|---|
{{ !empty($job->branches)?$job->branches->name:__('All') }} | {{$job->title}} | {{\Auth::user()->dateFormat($job->start_date)}} | {{\Auth::user()->dateFormat($job->end_date)}} | @if($job->status=='active') {{App\Models\Job::$status[$job->status]}} @else {{App\Models\Job::$status[$job->status]}} @endif | {{ \Auth::user()->dateFormat($job->created_at) }} | @if( Gate::check('edit job') ||Gate::check('delete job') || Gate::check('show job'))
@if($job->status!='in_active')
{{-- --}}
{{-- --}}
{{-- --}}
{{-- --}}
{{-- --}}
@endif
@can('show job')
@endcan
@can('edit job')
@endcan
@can('delete job')
@endcan
|
@endif