| # | {{ __('Name') }} | {{ __('Department') }} | {{ __('Description') }} | {{ __('Employees') }} | {{ __('Actions') }} |
|---|---|---|---|---|---|
| {{ $loop->iteration + ($positions->currentPage() - 1) * $positions->perPage() }} | {{ $position->name }} | {{ optional($position->department)->name }} | {{ Str::limit($position->description, 30) }} | {{ $position->employees()->count() }} | @can('positions edit') @endcan @can('positions delete') @endcan {{ __('Employees') }} {{ __('View') }} |
| {{ __('No positions found.') }} | |||||