@extends('admin.layouts.app')
@section('title', 'Units')
@section('page_title', 'Unit Management')
@section('content')
| ID |
Name |
Short Name |
Status |
Actions |
@forelse($units as $unit)
| {{ $unit->id }} |
{{ $unit->name }} |
{{ $unit->short_name }} |
@if($unit->status == 1)
Active
@else
Inactive
@endif
|
|
@empty
| No units found |
@endforelse
{{ $units->links() }}
@endsection