Wire admin studio SSR and search infrastructure

This commit is contained in:
2026-05-01 11:46:06 +02:00
parent 257b0dbef6
commit 18cea8b0f0
329 changed files with 197465 additions and 2741 deletions

24
app/Mail/TestMail.php Normal file
View File

@@ -0,0 +1,24 @@
<?php
namespace App\Mail;
use Illuminate\Bus\Queueable;
use Illuminate\Mail\Mailable;
use Illuminate\Queue\SerializesModels;
class TestMail extends Mailable
{
use Queueable, SerializesModels;
public string $body;
public function __construct(string $body = 'This is a test email from Skinbase.')
{
$this->body = $body;
}
public function build()
{
return $this->subject('Skinbase Test Mail')->html("<p>{$this->body}</p>");
}
}