{{ __('Consultation Request List') }}
{{-- Search filter --}}
@if (request()->get('par-page') !== 'all')
Total {{ $posts->total() }} Request found
{{ __('SN') }} | {{ __('Counselor') }} | {{ __('Name') }} | {{ __('Phone') }} | {{ __('Email') }} | {{ __('Create On ') }} | {{ __('Action') }} |
---|---|---|---|---|---|---|
{{ $loop->index + 1 }} | @if($model->counselor) {{ @$model->counselor->title }} @else {{ @$model->counselor->title }} @endif | {{ $model->name }} | {{ $model->phone }} | {{ $model->email }} | {{ formatDate($model->created_at) }} |
{{ $posts->onEachSide(0)->links() }}
@endif