You've already forked Atomcms-edit
Initial commit
This commit is contained in:
Executable
+27
@@ -0,0 +1,27 @@
|
||||
<?php
|
||||
|
||||
declare(strict_types=1);
|
||||
|
||||
namespace App\Models;
|
||||
|
||||
use App\Models\Concerns\BelongsToUser;
|
||||
use Illuminate\Database\Eloquent\Factories\HasFactory;
|
||||
use Illuminate\Database\Eloquent\Model;
|
||||
|
||||
class RadioShout extends Model
|
||||
{
|
||||
use BelongsToUser;
|
||||
use HasFactory;
|
||||
|
||||
/** @var array<int, string> */
|
||||
#[\Override]
|
||||
protected $with = ['user'];
|
||||
|
||||
#[\Override]
|
||||
protected $fillable = [
|
||||
'user_id',
|
||||
'message',
|
||||
'reported',
|
||||
'reported_by',
|
||||
];
|
||||
}
|
||||
Reference in New Issue
Block a user