@extends('layouts.app') @section('title', 'تفاصيل التأشيرة') @push('styles') @endpush @section('content')
{{ $visa->issue_number }}
{{ $visa->company_name ?? 'لم تحدد الشركة' }}
@if($visa->visa_type) {{ $visa->visa_type }} @endif @if($visa->arrival_destination) {{ $visa->arrival_destination }} @endif {{ $visa->quantity }} تأشيرة
الشركة
{{ $visa->company_name ?? '-' }}
الكمية
{{ $visa->quantity }}
بيانات التأشيرة
رقم الصادر {{ $visa->issue_number }}
الرقم الموحد {{ $visa->unified_number ?? '-' }}
رقم السجل {{ $visa->registration_number ?? '-' }}
نوع التأشيرة {{ $visa->visa_type ?? '-' }}
معلومات العمل
جهة القدوم {{ $visa->arrival_destination ?? '-' }}
المهنة {{ $visa->profession ?? '-' }}
السمسار {{ $visa->sponsor ?? '-' }}
تاريخ الإصدار {{ $visa->formatted_hijri_date }}
معلومات الدفع
الحساب البنكي {{ $visa->bank_account ?? '-' }}
@if($visa->notes)
ملاحظات

{{ $visa->notes }}

@endif
سجل النشاطات
@forelse($activities as $activity)
@switch($activity->action) @case('create') @break @case('update') @break @case('delete') @break @default @endswitch
{{ $activity->description }}
{{ $activity->created_at->diffForHumans() }} @if($activity->performer) - {{ $activity->performer->name }} @endif
@empty

لا توجد نشاطات

@endforelse
@endsection