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