@extends('dashboard.body.main') @section('container')
{{-- Alert: Session Status --}} @if (session()->has('success')) @endif {{-- Section: Header and Add Button --}}

Supplier List

A supplier dashboard lets you easily gather and visualize supplier data from optimizing
the supplier experience, ensuring supplier retention.

Add Supplier Clear Search
{{-- Section: Filters and Search --}}
{{-- Section: Supplier Table --}}
@foreach ($suppliers as $supplier) @endforeach
No. Action
{{ (($suppliers->currentPage() * 10) - 10) + $loop->iteration }} {{ $supplier->name }} {{ $supplier->email }} {{ $supplier->phone }} {{ $supplier->city }}
@method('delete') @csrf
{{ $suppliers->links() }}
@endsection