Allow syndication targets to be added/edited in admin interface
This commit is contained in:
parent
ea8395a651
commit
0ddec78d09
7 changed files with 251 additions and 0 deletions
|
@ -12,6 +12,22 @@ class SyndicationTarget extends Model
|
|||
{
|
||||
use HasFactory;
|
||||
|
||||
/**
|
||||
* The attributes that are mass assignable.
|
||||
*
|
||||
* @var array
|
||||
*/
|
||||
protected $fillable = [
|
||||
'uid',
|
||||
'name',
|
||||
'service_name',
|
||||
'service_url',
|
||||
'service_photo',
|
||||
'user_name',
|
||||
'user_url',
|
||||
'user_photo',
|
||||
];
|
||||
|
||||
/**
|
||||
* The attributes that are visible when serializing the model.
|
||||
*
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue