22 lines
360 B
PHP
22 lines
360 B
PHP
<?php
|
|
|
|
namespace App;
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
class Schedule extends Model
|
|
{
|
|
/**
|
|
* The attributes that are not mass assignable.
|
|
*
|
|
* @var array
|
|
*/
|
|
// protected $fillable = [
|
|
// 'client_name',
|
|
// 'secret_key',
|
|
// 'access_key',
|
|
// 'setup_config'
|
|
// ];
|
|
protected $guarded = [ 'id' ];
|
|
}
|