36 lines
584 B
PHP
36 lines
584 B
PHP
<?php
|
|
|
|
namespace App;
|
|
|
|
use App\Traits\Uuids;
|
|
use Illuminate\Database\Eloquent\Model;
|
|
use Illuminate\Notifications\Notifiable;
|
|
|
|
class Client extends Model
|
|
{
|
|
use Uuids;
|
|
use Notifiable;
|
|
|
|
/**
|
|
* Indicates if the IDs are auto-incrementing.
|
|
*
|
|
* @var bool
|
|
*/
|
|
public $incrementing = false;
|
|
|
|
|
|
/**
|
|
* The attributes that are not mass assignable.
|
|
*
|
|
* @var array
|
|
*/
|
|
// protected $fillable = [
|
|
// 'client_name',
|
|
// 'secret_key',
|
|
// 'access_key',
|
|
// 'setup_config'
|
|
// ];
|
|
protected $guarded = [ 'id' ];
|
|
|
|
|
|
} |