@extends('layouts.dashboard.adminapp') @section('title', 'Customer/Vendor List') @section('styles') @endsection @if (session('success')) @endif @if (session('error')) @endif @section('content')

UEPL | Customer & Vendor List

day, 00 month 0000
@php $i = 1; @endphp @foreach ($customers as $customer) @endforeach
ID Company Role Company Name Company Acronym Email Mobile Secondary Mobile Company Type Logo GST PAN MSME/Udyam IEC Billing Address Shipping Address Website Bank Name Bank Branch Account Number Account Type Account Holder Name Account Currency IFSC Code SWIFT/BIC Code Status Contact Name 1 Contact Email 1 Contact Mobile 1 Contact Designation 1 Actions
{{ $i++ }} {{ $customer->company_role }} {{ $customer->company }} {{ $customer->company_nickname }} {{ $customer->email }} {{ $customer->mobile }} {{ $customer->secondary_mobile }} {{ $customer->company_type }} @if ($customer->image) Logo @else No Logo @endif {{ $customer->gstno }} {{ $customer->panno }} {{ $customer->msmeno }} {{ $customer->iecno }} {{ $customer->billing_address }} {{ $customer->shipping_address }} {{ $customer->url }} {{ $customer->bank_name }} {{ $customer->branch_name }} {{ $customer->account_number }} {{ $customer->account_type }} {{ $customer->account_holder_name }} {{ $customer->account_currency }} {{ $customer->ifsc_code }} {{ $customer->swift_code }} @if ($customer->status == 1) Active @else Inactive @endif {{ $customer->contactPersons[0]->name ?? '' }} {{ $customer->contactPersons[0]->email ?? '' }} {{ $customer->contactPersons[0]->mobile ?? '' }} {{ $customer->contactPersons[0]->designation ?? '' }}
@endsection @section('scripts') @endsection