@extends('layouts.app') @section('title', 'Visa Admin') @section('content')
| Date | Price (SAR) | Actions |
|---|---|---|
| {{ $price->created_at->format('Y-m-d') }} | @currency($price->selling_price, 2) |
@if($price->is_locked)
Edit
Delete
@else
@endif
|
| No visa price records yet. | ||
| Agent Name | Agent Visa Price (SAR) | Actions |
|---|---|---|
| {{ $cost->visaAgent->name ?? 'N/A' }} | @currency($cost->visa_agent_cost, 2) |
|
| No agent price records. | ||
| Name | Address | Contacts | Actions |
|---|---|---|---|
| {{ $agent->name }} | {{ $agent->address ?? '—' }} | {{ $agent->contacts ?? '—' }} |
|
| No visa agents found. | |||
| Visa Agent | Name | Address | Contacts | Actions |
|---|---|---|---|---|
| {{ $agent->visaAgent->name ?? '—' }} | {{ $agent->name }} | {{ $agent->address ?? '—' }} | {{ $agent->contacts ?? '—' }} |
|
| No commission agents found. | ||||