@extends('layouts.app') @section('title', 'Standar Operasional Prosedur') @section('content')

📚 Daftar SOP

{{-- Input Pencarian --}} {{-- Tombol Reset --}} @if(request('search')) 🔄 Reset @endif
@if ($sops->isEmpty())
Belum ada SOP yang sesuai.
@else
@foreach ($sops as $sop)

{{ $sop->judul }}

{{ \Illuminate\Support\Str::limit(strip_tags($sop->deskripsi), 100) }}

📅 {{ $sop->updated_at->format('d M Y') }}
@endforeach
{{ $sops->links('vendor.pagination.tailwind') }}
@endif
@endsection