@php $date_format = get_company_option('date_format','Y-m-d'); @endphp
{{ _lang('Subscription Details') }}
@if($user->user_type == 'user')
| {{ _lang('Package Name') }} | {{ $user->company->package->package_name }} |
| {{ _lang('Package Valid Until') }} | {{ date($date_format, strtotime($user->company->valid_to)) }} |
| {{ _lang('Membersip Type') }} | {!! $user->company->membership_type == 'trial' ? clean(status(ucwords($user->company->membership_type), 'danger')) : clean(status(ucwords($user->company->membership_type), 'success')) !!} |
@endif
@if($user->user_type == 'user')
| {{ _lang('Package Details') }} |
| {{ _lang('Feature') }} |
{{ _lang('Avaialble Limit') }} |
| {{ _lang('Staff Limit') }} |
{{ $user->company->staff_limit }} |
| {{ _lang('Contacts Limit') }} |
{{ $user->company->contacts_limit }} |
| {{ _lang('Invoice Limit') }} |
{{ $user->company->invoice_limit }} |
| {{ _lang('Quotation Limit') }} |
{{ $user->company->quotation_limit }} |
| {{ _lang('Project Management') }} |
{{ ucwords($user->company->project_management_module) }} |
| {{ _lang('Recurring Transaction') }} |
{{ ucwords($user->company->recurring_transaction) }} |
| {{ _lang('Inventory Module') }} |
{{ ucwords($user->company->inventory_module) }} |
| {{ _lang('Live Chat') }} |
{{ ucwords($user->company->live_chat) }} |
| {{ _lang('File Manager') }} |
{{ ucwords($user->company->file_manager) }} |
| {{ _lang('Online Payment') }} |
{{ ucwords($user->company->online_payment) }} |
@endif