@extends('layouts.app') @section('title','Suppliers') @section('content')
@forelse($suppliers as $item)@empty@endforelse
CodeNamePhoneEmail
{{ $item->code ?? '—' }}{{ $item->name ?? '—' }}{{ $item->phone ?? '—' }}{{ $item->email ?? '—' }}
No records found
@endsection