14 lines
210 B
PHP
14 lines
210 B
PHP
<?php
|
|
|
|
namespace App\Models\Match;
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
|
|
class Preview extends Model
|
|
{
|
|
protected $fillable = [];
|
|
protected $guarded = [];
|
|
protected $table = "user_previews";
|
|
}
|