@extends('app') @section('content') Add Inventory Supplier Home Supplier Add Supplier {{csrf_field()}} Name Company Name Phone Email Address Products Submit S/N Name Company Name Products Phone Address Status Action @forelse($suppliers as $itemSupplier) {{$loop->index+1}} {{$itemSupplier->name}} {{$itemSupplier->company_name}} {{$itemSupplier->products}} {{$itemSupplier->phone}} {{$itemSupplier->address}} @if($itemSupplier->status==1) Active @else Disabled @endif @empty No Records @endforelse @endsection @section('script') @endsection
No Records