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