@if (Session::get('tenant_subscribtion_data')['complaints']['belongs_to_subscribtion'] == true && Session::get('tenant_controle_modules')['complaints'] == 1)
@else
{{ translate('Upgrade now') }}
@endif
#
|
{{ translate('The complainant') }} | {{ translate('Complaint Name') }} | {{ translate('Options') }} |
---|---|---|---|
{{ $key + 1 + ($complaints->currentPage() - 1) * $complaints->perPage() }}
|
{{ $d->user->name }} | {{ $d->name }} |
{{ $complaints->links() }}
 }})
{{ translate('You need to upgrade to use this feature.') }}
{{ translate('Please Upgrade to use this feature.') }}
{{ translate('Upgrade now') }}
{!! Form::open(['method' => 'post', 'action' => 'Admin\ComplaintsController@store', 'files' => true, 'id' => 'add_complaints_form']) !!}
{!! Form::Close() !!}
{{ translate('Add complaint') }}
{!! Form::text('name', null, ['class' => 'form-control', 'placeholder' => translate('Complaint name')]) !!}
@error('name')
{{ $message }}
@enderror
{!! Form::select('user_id', $users, null, ['data-placeholder' => translate('The complainant'), 'class' => 'form-control select2']) !!}
@error('user_id')
{{ $message }}
@enderror
{!! Form::textarea('body', null, ['class' => 'form-control', 'placeholder' => translate('The content of the complaint')]) !!}
@error('body')
{{ $message }}
@enderror