@extends('app') @section('content')

Add Inventory Supplier

{{csrf_field()}}
@forelse($suppliers as $itemSupplier) @empty

No Records

@endforelse
S/N Name Company Name Products Phone Address Status Action
{{$loop->index+1}} {{$itemSupplier->name}} {{$itemSupplier->company_name}} {{$itemSupplier->products}} {{$itemSupplier->phone}} {{$itemSupplier->address}} @if($itemSupplier->status==1) @else @endif
@endsection @section('script') @endsection