for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Noitran\RQL\Tests\Stubs\Models;
use Illuminate\Database\Eloquent\Model;
/**
* Class User
*/
class User extends Model
{
* The attributes that aren't mass assignable.
*
* @var array
protected $guarded = [
'id',
];
}