15
app/Models/VideoReport.php
Executable file
15
app/Models/VideoReport.php
Executable file
@@ -0,0 +1,15 @@
|
||||
<?php
|
||||
|
||||
namespace App\Models;
|
||||
|
||||
use Illuminate\Database\Eloquent\Model;
|
||||
|
||||
class VideoReport extends Model
|
||||
{
|
||||
protected $guarded = ['id'];
|
||||
protected $casts = [
|
||||
'id' => 'integer',
|
||||
'user_id' => 'integer',
|
||||
'comment_id' => 'integer',
|
||||
];
|
||||
}
|
||||
Reference in New Issue
Block a user