mdbpanel/app/Backup.php

22 lines
358 B
PHP

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