@can('application_create')
@endcan
@foreach ($applications as $key => $application)
@endforeach
{{--
- Click the confirm payment button and a pop up page will appear
- Confirm the booking details
- Enter the safaricom phone number you want to use to make the payment in the
contact's field
- Click the pay button
- An Mpesa prompt for a payment will appear on your phone
- Confirm the total price and the name of company
- Put your MPesa PIN in the prompt and click ok
- Wait for a notification to appear on the web application page regarding the
payment
- {{ $application->id ?? '' }}
- {{ $application->user->name ?? '' }}
- {{ $application->user->email ?? '' }}
- {{ $application->property->name ?? '' }}
- {{ $application->unit->name ?? '' }}
- {{ $application->name ?? '' }}
- {{ $application->phone ?? '' }}
--}}
|
{{ trans('cruds.application.fields.id') }}
|
{{ $application->id }}
|
|
{{ trans('cruds.application.fields.user') }}
|
{{ $application->user->name ?? '' }}
|
|
{{ trans('cruds.application.fields.property') }}
|
{{ $application->property->name ?? '' }}
|
|
{{ trans('cruds.application.fields.unit') }}
|
{{ $application->unit->name ?? '' }}
|
|
{{ trans('cruds.application.fields.name') }}
|
{{ $application->name }}
|
|
{{ trans('cruds.application.fields.email') }}
|
{{ $application->email }}
|
|
{{ trans('cruds.application.fields.phone') }}
|
{{ $application->phone }}
|
|
{{ trans('cruds.application.fields.status') }}
|
{{ App\Models\Application::STATUS_SELECT[$application->status] ?? '' }}
|
|
|
|
@can('application_edit')
{{ trans('global.edit') }}
@endcan
|
@endsection
{{-- @section('scripts')
@parent
@endsection --}}