@extends('admin.admin_master') @section('admin')

All Supplier

@foreach ($supplier as $key => $item) @endforeach
Sl Supplier Name Email Phone Address Action
{{ $key + 1 }} {{ $item->name }} {{ $item->email }} {{ $item->phone }} {{ Str::limit($item->address, 50, '...') }} Edit Delete
@endsection