mirror of
https://github.com/HolgerHatGarKeineNode/einundzwanzig-app.git
synced 2025-12-15 00:06:48 +00:00
🚀 initial commit
This commit is contained in:
16
app/Models/EmailCampaign.php
Normal file
16
app/Models/EmailCampaign.php
Normal file
@@ -0,0 +1,16 @@
|
||||
<?php
|
||||
|
||||
namespace App\Models;
|
||||
|
||||
use Illuminate\Database\Eloquent\Factories\HasFactory;
|
||||
use Illuminate\Database\Eloquent\Model;
|
||||
|
||||
class EmailCampaign extends Model
|
||||
{
|
||||
use HasFactory;
|
||||
|
||||
public function emailTexts()
|
||||
{
|
||||
return $this->hasMany(EmailTexts::class);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user