@extends('layouts.admin') @section('page-title') {{__('Plan-Request')}} @endsection @section('breadcrumb') @endsection @section('title')
{{__('Plan Request')}}
@endsection @section('content')
@if($plan_requests->count() > 0) @foreach($plan_requests as $prequest) @endforeach @else @endif
{{ $prequest->user->name }}
{{ $prequest->plan->name }}
{{ $prequest->plan->max_employee }}
{{__('Employee')}}
{{ $prequest->plan->max_client }}
{{__('Client')}}
{{ ($prequest->duration == 'monthly') ? __('One Month') : __('One Year') }}
{{ App\Models\Utility::getDateFormated($prequest->created_at,true) }}
{{__('No Manually Plan Request Found.')}}
@endsection