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