@extends('layouts.admin') @section('page-title') {{__('Plan-Request')}} @endsection @section('links') @if(\Auth::guard('client')->check())
| {{__('NAME')}} | {{__('PLAN NAME')}} | {{__('TOTAL USERS')}} | {{__('TOTAL CLIENTS')}} | {{__('DURATION')}} | {{__('DATE')}} | {{__('ACTION')}} |
|---|---|---|---|---|---|---|
|
{{ $prequest->user->name }}
|
{{ $prequest->plan->name }}
|
{{ $plan->max_users }}
{{-- {{__('Employee')}} --}}
|
{{ $plan->max_clients }}
{{-- {{__('Client')}} --}}
|
{{ ($prequest->duration == 'monthly') ? __('One Month') : __('One Year') }}
|
{{ \App\Models\Utility::getDateFormated($prequest->created_at,true) }} | |
{{__('No Manually Plan Request Found.')}} |
||||||