@extends('layouts.app') @section('content')
{{ $company->name }} - Manage job positions
| Position Title | Department | Salary Range | Employees | Status | Actions |
|---|---|---|---|---|---|
{{ $position->title }}@if($position->description) {{ Str::limit($position->description, 60) }} @endif |
@if($position->department) {{ $position->department->name }} @else No Department @endif | @if($position->min_salary && $position->max_salary) RM{{ number_format($position->min_salary, 0) }} - RM{{ number_format($position->max_salary, 0) }} @elseif($position->min_salary) From RM{{ number_format($position->min_salary, 0) }} @elseif($position->max_salary) Up to RM{{ number_format($position->max_salary, 0) }} @else Not specified @endif | {{ $position->employees_count }} | @if($position->is_active) Active @else Inactive @endif |