Remove unwanted comments
This commit is contained in:
parent
1ed7a648db
commit
719a47ef22
|
|
@ -11,11 +11,5 @@ class Backup extends Model
|
||||||
*
|
*
|
||||||
* @var array
|
* @var array
|
||||||
*/
|
*/
|
||||||
// protected $fillable = [
|
|
||||||
// 'client_name',
|
|
||||||
// 'secret_key',
|
|
||||||
// 'access_key',
|
|
||||||
// 'setup_config'
|
|
||||||
// ];
|
|
||||||
protected $guarded = [ 'id' ];
|
protected $guarded = [ 'id' ];
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -10,7 +10,6 @@ use App\Traits\Uuids;
|
||||||
class Client extends Model
|
class Client extends Model
|
||||||
{
|
{
|
||||||
use Uuids;
|
use Uuids;
|
||||||
// use Notifiable;
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Indicates if the IDs are auto-incrementing.
|
* Indicates if the IDs are auto-incrementing.
|
||||||
|
|
|
||||||
|
|
@ -1,19 +0,0 @@
|
||||||
<?php
|
|
||||||
|
|
||||||
namespace App\Http\Resources;
|
|
||||||
|
|
||||||
use Illuminate\Http\Resources\Json\JsonResource;
|
|
||||||
|
|
||||||
class Client extends JsonResource
|
|
||||||
{
|
|
||||||
/**
|
|
||||||
* Transform the resource into an array.
|
|
||||||
*
|
|
||||||
* @param \Illuminate\Http\Request $request
|
|
||||||
* @return array
|
|
||||||
*/
|
|
||||||
public function toArray($request)
|
|
||||||
{
|
|
||||||
return parent::toArray($request);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
@ -11,11 +11,6 @@ class Schedule extends Model
|
||||||
*
|
*
|
||||||
* @var array
|
* @var array
|
||||||
*/
|
*/
|
||||||
// protected $fillable = [
|
|
||||||
// 'client_name',
|
|
||||||
// 'secret_key',
|
|
||||||
// 'access_key',
|
|
||||||
// 'setup_config'
|
|
||||||
// ];
|
|
||||||
protected $guarded = [ 'id' ];
|
protected $guarded = [ 'id' ];
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue