@extends('layouts.admin-apoteker') @section('content')
{{-- Judul dan Tombol Tambah --}}

📄 Daftar SOP

➕ Tambah SOP
{{-- Form Filter --}}
{{-- Tabel SOP --}}
@forelse ($sops as $index => $sop) @empty @endforelse
No Judul Nomor SOP Pembuat Status Aksi
{{ $sops->firstItem() + $index }} {{ $sop->judul }} {{ $sop->nomor_sop }} {{ $sop->user->name }} {{ ucfirst($sop->status) }} 🔍 ✏️ 📄
@csrf @method('DELETE')
Belum ada SOP ditemukan.
{{-- Pagination --}}
{{ $sops->withQueryString()->links() }}
{{-- SweetAlert2 --}} @push('scripts') @endpush @endsection