@extends('layouts.app') @section('title', 'Daftar Supliyer') @section('content')

Daftar Supliyer

Tambah Supliyer
@if($supliyer->count() > 0)
@foreach($supliyer as $index => $item) @endforeach
No Kode Nama Telepon Email Alamat Aksi
{{ $supliyer->firstItem() + $index }} {{ $item->kode_supliyer }} {{ $item->nama }} {{ $item->telepon ?? '-' }} {{ $item->email ?? '-' }} {{ Str::limit($item->alamat ?? '-', 30) }}
@csrf @method('DELETE')
{{ $supliyer->links() }}
@else

Belum ada data supliyer.

Tambah Supliyer Pertama
@endif
@endsection