@extends('layouts.master') @section('title') @lang('translation.Positions') @endsection @section('css') @endsection @section('content') @component('components.breadcrumb') @slot('li_1') Admin @endslot @slot('title') Positions Management @endslot @endcomponent
| # | Position Name | Role | Status | Employees Count | Actions |
|---|---|---|---|---|---|
| {{ $loop->iteration + ($positions->currentPage() - 1) * $positions->perPage() }} |
{{ $position->position_name }}
|
@if($position->role) {{ $position->role->name }} @else N/A @endif | {{ $position->active ? 'Active' : 'Inactive' }} @if(method_exists($position, 'trashed') && $position->trashed()) Deleted @endif | {{ $position->employees_count ?? 0 }} | |
No positions foundTry adjusting your search or filter to find what you're looking for. Add New Position |
|||||