@extends('layouts.auth') @section('htmlheader_title') Supplier List @endsection @section('content') @foreach (\App\Models\Supplier::all() as $o) @endforeach
ID Name
{{ $o->id }} {{ $o->name }}
Add new Supplier. @endsection