mirror of
https://gitlab.linphone.org/BC/public/flexisip-account-manager.git
synced 2026-01-17 10:08:05 +00:00
Hide a few attributes in Account Action Update the dependencies Fix a title in the documentation
18 lines
337 B
PHP
18 lines
337 B
PHP
<?php
|
|
|
|
namespace App;
|
|
|
|
use Illuminate\Database\Eloquent\Factories\HasFactory;
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
class AccountAction extends Model
|
|
{
|
|
use HasFactory;
|
|
|
|
protected $hidden = ['created_at', 'updated_at', 'account_id'];
|
|
|
|
public function account()
|
|
{
|
|
return $this->belongsTo('App\Account');
|
|
}
|
|
}
|