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