@extends('layouts.admin') @section('page-title') {{__('Plan-Request')}} @endsection @section('links') @if(\Auth::guard('client')->check()) @else @endif @endsection @section('content')
@if($plan_requests->count() > 0) @foreach($plan_requests as $prequest) @php $plan = \App\Models\Plan::find($prequest->plan_id); @endphp @endforeach @else @endif
{{__('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.')}}
@endsection