@extends('layouts.customer') @section('content')

Suppliers

Add Supplier
@if ($message = Session::get('success'))

{{ $message }}

@endif
@if($suppliers) @php $i = 0; @endphp @foreach($suppliers as $supplier) @endforeach @else

No records found!

@endif
# Organization Name Email Address Portal Username / Password Action
{{ ++$i }}

{{ $supplier->organization_name }}

@ {{ $supplier->contact_person }}

{{ $supplier->email }} @php $portal_link = "https://google.com"; //$portal_link = $supplier->portal_link; if(!empty($portal_link) ){ echo ' '; } else { echo 'no'; } @endphp {{ $supplier->username }} / {{ $supplier->password }}
@endsection