@extends('admin.layouts.master') @section('title', 'Partner Management') @push('styles') @endpush @section('content')
Total Partners
Active Agents
Corporate Clients
Currently Active
| Company / Agent | Type | Contact Info | Financials | Status | Actions |
|---|---|---|---|---|---|
|
@if ($company->logo)
|
{{-- Type --}}
@if ($company->isAgent()) Agent @else Corporate @endif | {{-- Contact --}}
{{ $company->email }}
@if ($company->phone)
{{ $company->phone }}
@endif
|
{{-- Financials --}}
@if ($company->credit_limit > 0)
Credit Limit
@endif
₹{{ number_format($company->credit_limit) }}
@if ($company->isAgent())
Commission
{{ $company->default_commission_rate }}%
@else
Discount
{{ $company->standard_discount }}%
@endif
|
{{-- Status --}}
@if ($company->is_active)
Active
@else
Inactive
@endif
|
{{-- Actions --}}
|
No partners foundTry adjusting your filters or add a new partner. |
|||||