@extends('layouts.app') @section('title', 'Suppliers') @section('page-title', 'Suppliers') @section('content')
@if($suppliers->count() > 0)
@foreach($suppliers as $supplier) @endforeach
Company Contact Location Business Type Status Actions
{{ $supplier->business_name }}
{{ $supplier->supplier_code }}
{{ $supplier->contact_person }}
{{ $supplier->phone }}
@if($supplier->email)
{{ $supplier->email }}
@endif
{{ $supplier->city }}
{{ $supplier->state }}
{{ ucfirst($supplier->supplier_type) }}
{{ ucfirst($supplier->status) }} @if($supplier->is_verified) Verified @else Unverified @endif
@if(!$supplier->is_verified)
@csrf
@endif
{{ $suppliers->links() }}
@else

No suppliers found

Get started by adding your first supplier.

Add Supplier
@endif
@endsection