<?php
namespace Nwidart\Modules\Commands;
use Illuminate\Support\Str;
use Nwidart\Modules\Support\Config\GenerateConfigReader;
use Nwidart\Modules\Support\Stub;
use Nwidart\Modules\Traits\ModuleCommandTrait;
use Symfony\Component\Console\Input\InputArgument;
final class NotificationMakeCommand extends GeneratorCommand
{
use ModuleCommandTrait;
protected $name = 'module:make-notification';
protected $argumentName = 'name';
protected $description = 'Create a new notification class for the specified module.';
public function getDefaultNamespace() : string
{
$module = $this->laravel['modules'];
return $module->config('paths.generator.notifications.namespace') ?: $module->config('paths.generator.notifications.path', 'Notifications');
}
protected function getTemplateContents()
{
$module = $this->laravel['modules']->findOrFail($this->getModuleName());