diff --git a/app/Filament/Resources/Mailtemplates/Schemas/MailtemplateForm.php b/app/Filament/Resources/Mailtemplates/Schemas/MailtemplateForm.php index 4f0189d..b9267ff 100644 --- a/app/Filament/Resources/Mailtemplates/Schemas/MailtemplateForm.php +++ b/app/Filament/Resources/Mailtemplates/Schemas/MailtemplateForm.php @@ -22,6 +22,7 @@ class MailtemplateForm ->required() ->columnSpanFull(), TextInput::make('type') + ->label('Greeting') ->required() ->columnSpanFull(), MarkdownEditor::make('content') diff --git a/app/Mail/LanMail.php b/app/Mail/LanMail.php index 6c2ef2d..24b60b7 100644 --- a/app/Mail/LanMail.php +++ b/app/Mail/LanMail.php @@ -35,7 +35,7 @@ class LanMail extends Mailable public function envelope(): Envelope { return new Envelope( - subject: mb_decode_mimeheader($this->title), + subject: $this->title, ); } diff --git a/config/app.php b/config/app.php index 8281ae7..26b1117 100644 --- a/config/app.php +++ b/config/app.php @@ -67,6 +67,8 @@ return [ 'timezone' => 'UTC', + 'charset' => 'UTF-8', + /* |-------------------------------------------------------------------------- | Application Locale Configuration diff --git a/config/filesystems.php b/config/filesystems.php index 4fe95ce..3d671bd 100644 --- a/config/filesystems.php +++ b/config/filesystems.php @@ -77,30 +77,4 @@ return [ public_path('storage') => storage_path('app/public'), ], - /* - |-------------------------------------------------------------------------- - | Exports - |-------------------------------------------------------------------------- - | - | - */ - - 'export' => [ - 'driver' => 'local', - 'root' => storage_path('app/exports'), - 'url' => env('APP_URL') . '/exports', - 'visibility' => 'public', - 'permissions' => [ - 'file' => [ - 'public' => 0644, - 'private' => 0600, - ], - 'dir' => [ - 'public' => 0755, - 'private' => 0700, - ], - ], - 'throw' => false, - ] - ]; diff --git a/resources/views/app.blade.php b/resources/views/app.blade.php index 856bcf2..59e137b 100644 --- a/resources/views/app.blade.php +++ b/resources/views/app.blade.php @@ -4,6 +4,23 @@ + + + + + {{ config('app.name', 'Laravel') }}