Answers for "laravel set all fillable"

PHP
0

laravel allow all fillable

protected $hidden    	= ['updated_at'];
    protected $guarded   	= ['updated_at'];
Posted by: Guest on June-01-2021
0

laravel allow all fillable

namespace AppModels;

use IlluminateDatabaseEloquentFactoriesHasFactory;
use IlluminateDatabaseEloquentModel;

class Audio extends Model
{
    use HasFactory;
    //Add this below
    protected $hidden    	= ['updated_at'];
    protected $guarded   	= ['updated_at'];
}
Posted by: Guest on June-01-2021

Browse Popular Code Answers by Language