@extends('layouts.app') @section('title', 'Visa Selling Price') @section('content')

Visa Selling Price

@if(session('success'))
{{ session('success') }}
@endif @if(session('error'))
{{ session('error') }}
@endif
@forelse($visaSellingPrices as $price) @empty @endforelse
Date Price (SAR) Actions
{{ $price->created_at->format('Y-m-d') }} {{ number_format($price->selling_price, 2) }}
@if($price->is_locked) Edit Delete @else
@csrf @method('DELETE')
@endif
No visa price records yet. Click "Add Visa Price" to create a new price record.
{{ $visaSellingPrices->links() }}
@endsection