@extends('layouts.app') @section('content')
| Code | Party Name | Type | Phone | City | Credit Limit | Balance | Status | Actions |
|---|---|---|---|---|---|---|---|---|
| {{ $party->code }} | {{ $party->name }} | @php $typeColors = ['customer' => '#28a745', 'supplier' => '#007bff', 'both' => '#6f42c1']; @endphp {{ $types[$party->type] ?? ucfirst($party->type) }} | {{ $party->phone ?: $party->mobile ?: '-' }} | {{ $party->city ?: '-' }} | {{ $party->credit_limit ? 'Rs. ' . number_format($party->credit_limit, 2) : '-' }} | Rs. {{ number_format($party->current_balance, 2) }} | @if($party->is_active) Active @else Inactive @endif | |
|
No parties found. Create your first party |
||||||||