@extends('layouts.admin') @section('title', 'Supplier - SI Apotek') @section('content')

Manajemen Supplier

@if(session('success')) @endif

Tambah Supplier

@csrf
@foreach($suppliers as $sup) @endforeach
No Nama Supplier Kontak & Alamat Aksi
{{ $loop->iteration }} {{ $sup->name }}
{{ $sup->contact ?? '-' }}
{{ $sup->address ?? '-' }}

Edit Supplier

@csrf @method('PUT')
@csrf @method('DELETE')
@endsection