@extends('admin.layout') @section('content')

Data Obat

@if(session('success'))
{{ session('success') }}
@endif {{-- Pencarian Obat --}}
@if(request('obat_id')) 🔄 Reset @endif
@foreach ($obats as $obat) @endforeach
No Nama Obat Kategori Satuan Stok Harga Expired Supplier Terakhir Aksi
{{ $loop->iteration }} {{ $obat->nama }} {{ $obat->kategori->nama ?? '-' }} {{ $obat->satuan }} {{ $obat->stok }} Rp{{ number_format($obat->harga, 0, ',', '.') }} {{ $obat->expired_at }} {{ $obat->supplier_terakhir }} Edit
@csrf @method('DELETE')
{{-- Pagination --}}
{{ $obats->links() }}
@endsection @section('scripts') {{-- jQuery & Select2 --}} @endsection