@extends('layouts.nav') @section('title') Suppliers @endsection @section('content')

System Suppliers

Add Suppliers
@if (session('success'))
{{ session('success') }}
@endif @if ($errors->any())
@foreach ($errors->all() as $error)
{{ $error }}
@endforeach
@endif
@csrf

@foreach ($suppliers as $supplier) @endforeach
Entry Date Supplier Code Name Contact Person Contact 1 Contact 2 Email Address Action
Entry Date Supplier Code Name Contact Person Contact 1 Contact 2 Email Address Action
{{ $supplier->EntryDate }} {{ $supplier->SupplierCode }} {{ $supplier->Name }} {{ $supplier->ContactPerson }} {{ $supplier->Contact1 }} {{ $supplier->Contact2 }} {{ $supplier->Email }} {{ $supplier->Address }}
@endsection