Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PHP

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'];
}
 
PREVIOUS NEXT
Tagged: #laravel #fillable
ADD COMMENT
Topic
Name
5+6 =