@extends('layouts.app') @section('content')

Positions

{{ $company->name }} - Manage job positions

Departments Add Position
Positions
{{ $positions->total() }} total
@if($positions->count() > 0)
@foreach($positions as $position) @endforeach
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
@csrf @method('DELETE')
@if($positions->hasPages())
{{ $positions->links() }}
@endif @else
No positions found

Create your first position to get started

Create First Position
@endif
@endsection