nWidart / laravel-modules

Module Management In Laravel
https://docs.laravelmodules.com
MIT License
5.5k stars 954 forks source link

Email variables not rendered in module view #1896

Open akxz opened 2 months ago

akxz commented 2 months ago

// Not work public function content(): Content { return new Content( view: 'mymodule::mails.plaintext', with: ['msg' => 'Hello world',], ); }

// It`s work public function content(): Content { return new Content( view: 'mails.plaintext', with: ['msg' => 'Hello world',], ); }