@extends('layouts.frontend') @section('content')
@can('application_create') @endcan
{{ trans('cruds.application.title_singular') }} {{ trans('global.list') }}
No need of applying twice
@foreach ($applications as $key => $application) @endforeach
{{--
  1. Click the confirm payment button and a pop up page will appear
  2. Confirm the booking details
  3. Enter the safaricom phone number you want to use to make the payment in the contact's field
  4. Click the pay button
  5. An Mpesa prompt for a payment will appear on your phone
  6. Confirm the total price and the name of company
  7. Put your MPesa PIN in the prompt and click ok
  8. 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 --}}