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