@extends('admin.layout.master')
@section('css')
@endsection
@section('content')
@php
$activeApprovalTab = $activeApprovalTab ?? 'accepted';
$approvalCounts = $approvalCounts ?? ['accepted' => 0, 'pending' => 0];
@endphp
@haspermission('admin.providers.notify')
{{ __('admin.send_notification') }}
@endhaspermission
{{-- {{ __('admin.send_email') }} --}}
@haspermission('admin.master-export')
{{ __('admin.export') }}
@endhaspermission
{{-- delete all script --}}
@include('admin.shared.deleteAll')
{{-- delete all script --}}
{{-- delete one user script --}}
@include('admin.shared.deleteOne')
{{-- delete one user script --}}
{{-- notify users model --}}
{{-- notify users model --}}
@endsection
@section('js')
@include('admin.shared.deleteAll')
@include('admin.shared.deleteOne')
@include('admin.shared.filter_js', ['index_route' => url('admin/providers'), 'defer_initial_load' => true])
@include('admin.shared.status_tabs_js', [
'indexRoute' => url('admin/providers'),
'activeTab' => $activeApprovalTab,
])
@include('admin.shared.notify')
@include('admin.shared.email')
@endsection