@extends('layouts.main') @section('page-title') {{ __('Notification Templates') }} @endsection @section('page-breadcrumb') {{ __('Notification Templates') }} @endsection @section('page-action') @endsection @php $activeModule = ''; foreach ($notifications as $key => $value) { $txt = module_is_active($key); if ($txt == true) { $activeModule = $key; break; } } @endphp @push('css') @include('layouts.includes.datatable-css') @endpush @section('content')
@if($activeModule == '')
{{ __('Make sure to activate at least one notification add-on. A notification template will be visible after that.') }}
@else
{{ $dataTable->table(['width' => '100%']) }}
@endif
@endsection @push('scripts') @include('layouts.includes.datatable-js') {{ $dataTable->scripts() }} @endpush