2020-06-09 08:02:07 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace App;
|
|
|
|
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
|
|
|
|
class ExternalLink extends Model
|
|
|
|
{
|
2020-06-22 12:53:00 +00:00
|
|
|
/**
|
|
|
|
* The attributes that are mass assignable.
|
|
|
|
*
|
|
|
|
* @var array
|
|
|
|
*/
|
|
|
|
protected $fillable = [
|
|
|
|
'name', "link"
|
|
|
|
];
|
2020-06-09 08:02:07 +00:00
|
|
|
}
|