@extends('layouts.admin') @section('page-title') {{__('Plan-Request')}} @endsection @section('breadcrumb')
| {{__('Name')}} | {{__('Plan Name')}} | {{__('Total Users')}} | {{__('Total Customers')}} | {{__('Total Vendors')}} | {{__('Total Clients')}} | {{__('Duration')}} | {{__('Date')}} | {{__('Action')}} |
|---|---|---|---|---|---|---|---|---|
|
{{ $prequest->user->name }}
|
{{ $prequest->plan->name }}
|
{{ $prequest->plan->max_users }}
|
{{ $prequest->plan->max_customers }}
|
{{ $prequest->plan->max_venders }}
|
{{ $prequest->plan->max_clients }}
|
@if($prequest->duration == "year")
{{ __('Yearly') }}
@elseif($prequest->duration == "month")
{{ __('Monthly') }}
@else
{{ __('Lifetime') }}
@endif
|
{{ Utility::getDateFormated($prequest->created_at,true) }} | |
{{__('No Manually Plan Request Found.')}} |
||||||||