@extends('layouts.frontend') @section('content')
{{ 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 |