@extends('layouts.app')
@section('title', $entity->name)
@section('content')
@if($entity->is_active)
{{ __('config.active') }}
@else
{{ __('config.inactive') }}
@endif
{{ __('app.edit') }}
{{ __('app.back') }}
{{ number_format($entity->applications_count) }}
{{ __('app.applications') }}
{{ number_format($entity->offers_count) }}
{{ __('config.funding_entities.title') }}
{{ $entity->code }}
{{ $entity->name_ar }}
{{ $entity->name_en }}
{{ $entity->type ? __('config.funding_entities.types.' . $entity->type) : '' }}
{{ $entity->contact_person }}
{{ $entity->phone }}
{{ $entity->email }}
{{ $entity->sort_order }}
| {{ __('app.application_number') }} |
{{ __('applications.columns.applicant_name') }} |
{{ __('applications.columns.finance_product') }} |
{{ __('app.amount') }} |
{{ __('app.status') }} |
@forelse($entity->applications as $app)
|
@can('applications.view')
{{ $app->application_number }}
@else
{{ $app->application_number }}
@endcan
|
{{ optional($app->applicant)->name ?? '—' }} |
{{ optional($app->product)->name ?? '—' }} |
|
@include('applications.partials.status_badge', ['status' => $app->status]) |
@empty
| {{ __('app.no_related') }} |
@endforelse
@endsection