@extends('layouts.frontend') @section('content')
@can('work_history_create') @endcan
{{ trans('cruds.workHistory.title_singular') }} {{ trans('global.list') }}
@foreach($workHistories as $key => $workHistory) @endforeach
{{ trans('cruds.workHistory.fields.id') }} {{ trans('cruds.workHistory.fields.company') }} {{ trans('cruds.workHistory.fields.title') }} {{ trans('cruds.workHistory.fields.description') }}  
{{ $workHistory->id ?? '' }} {{ $workHistory->company ?? '' }} {{ App\Models\WorkHistory::TITLE_SELECT[$workHistory->title] ?? '' }} {{ $workHistory->description ?? '' }} @can('work_history_show') {{ trans('global.view') }} @endcan @can('work_history_edit') {{ trans('global.edit') }} @endcan @can('work_history_delete')
@endcan
@endsection @section('scripts') @parent @endsection