Files
lms-v2/resources/views/pages/admin/sop/index.blade.php
T

57 lines
2.8 KiB
PHP
Raw Normal View History

2026-05-30 22:15:16 +07:00
@extends('layouts.app')
@section('title', 'Master SOP - HRIS')
@section('content')
<div class="max-w-7xl mx-auto">
<div class="flex justify-between items-center mb-6">
<div>
<h2 class="text-2xl font-bold text-slate-800 tracking-tight">Dokumen SOP & CPOB</h2>
<p class="text-sm text-slate-500">Pusat data prosedur operasi standar perusahaan.</p>
</div>
<a href="{{ route('admin.sops.create') }}" class="px-4 py-2 bg-indigo-600 text-white rounded-md text-sm font-semibold hover:bg-indigo-700 shadow-sm transition-all">
+ Registrasi SOP
</a>
</div>
<div class="bg-white rounded-xl shadow-sm border border-slate-200 overflow-hidden">
<div class="overflow-x-auto">
<table class="w-full text-left border-collapse">
<thead>
<tr class="bg-slate-50 border-b border-slate-200 text-xs uppercase tracking-wider text-slate-500 font-bold">
<th class="p-4">Kode SOP</th>
<th class="p-4">Judul Dokumen</th>
<th class="p-4">Versi</th>
<th class="p-4">Status</th>
<th class="p-4 text-right">Aksi</th>
</tr>
</thead>
<tbody class="divide-y divide-slate-100 text-sm text-slate-700">
@foreach($sops as $sop)
<tr class="hover:bg-slate-50">
<td class="p-4 font-mono font-medium">{{ $sop->sop_code }}</td>
<td class="p-4 font-bold text-slate-800">{{ $sop->title }}</td>
<td class="p-4">v{{ $sop->version }}</td>
<td class="p-4">
@if($sop->status == 'Active')
<span class="px-2.5 py-1 bg-emerald-100 text-emerald-700 text-xs font-bold rounded-full">Active</span>
@elseif($sop->status == 'Draft')
<span class="px-2.5 py-1 bg-amber-100 text-amber-700 text-xs font-bold rounded-full">Draft</span>
@else
<span class="px-2.5 py-1 bg-slate-200 text-slate-700 text-xs font-bold rounded-full">Obsolete</span>
@endif
</td>
<td class="p-4 text-right">
<a href="#" class="text-slate-500 hover:text-indigo-600 font-medium text-xs">Lihat Detail</a>
</td>
</tr>
@endforeach
</tbody>
</table>
</div>
<div class="p-4 border-t border-slate-100">
{{ $sops->links() }}
</div>
</div>
</div>
@endsection