@extends('backend.layouts.app') @section('content')

{{ translate('All Notification Types') }}

{{-- Notification Type List --}}

{{ translate('All Notification Types') }}

{{ translate('Default notification types can not be deleted.') }}
@php $activeClasss = 'btn-soft-blue'; $inActiveClasses = 'text-secondary border-dashed border-soft-light'; @endphp {{ translate('Customer') }} {{ translate('Seller') }} {{ translate('Admin') }}
@can('delete_notification_types') @endcan
@foreach ($notificationTypes as $key => $notificationType) @endforeach
{{ translate('Image') }} {{ translate('Type') }} {{ translate('DEfault Text') }} {{ translate('Status') }} {{ translate('Actions') }}
@if ($notificationType->type != 'custom') @else
@endif
{{ translate('Image') }} {{ $notificationType->getTranslation('name') }} {{ $notificationType->getTranslation('default_text') }} @can('edit_notification_types') @endcan @if(auth()->user()->can('delete_notification_types') && $notificationType->type == 'custom') @endif
{{ $notificationTypes->appends(request()->input())->links() }}
{{-- Notification Type Add --}} @can('add_notification_types')
{{ translate('Add New Notification Type') }}
@csrf @if ($errors->any())
    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif
{{ translate('Browse') }}
{{ translate('Choose File') }}
** {{ translate('N.B : Use character, number only') }} **
@endcan
@endsection @section('modal') @include('modals.delete_modal') @include('modals.bulk_delete_modal') @endsection @section('script') @endsection