@extends('layouts.index')
@section('title')
Ref. Division
@endsection
@section('css')
@endsection
@section('content')
Ref. Division
List of Division
| No. |
Name |
{{-- Description | --}}
Status |
Option |
@foreach ($list as $item)
| {{ $loop->iteration }} |
{{ $item->nama }} |
{{-- {{ $item->uraian }} | --}}
@php
if ($item->status == 'Y') {
$status = 'Active';
$statusColor = 'success';
} else {
$status = 'Inactive';
$statusColor = 'danger';
}
@endphp
{{ $status }}
|
|
@endforeach
Edit Division Reference
@endsection
@section('js')
@endsection