“Różnica między ochroną a wypełnieniem Laravel” Kod odpowiedzi

Różnica między ochroną a wypełnieniem Laravel

protected $guarded = ['name', 'email'];
Disgusted Dragonfly

wypełnione vs strzeżone laravel

Mass assignment is a process of sending an array of data that will be saved to the specified model at once. In general, you don’t need to save data on your model on one by one basis,
but rather in a single process.
  In Laravel, fillable attributes are used to specify those fields which are to be mass assigned. Guarded attributes are used to specify those fields which are not mass assignable.
coder

Różnica między ochroną a wypełnieniem Laravel

protected $fillable = ['name', 'email'];
Disgusted Dragonfly

Odpowiedzi podobne do “Różnica między ochroną a wypełnieniem Laravel”

Pytania podobne do “Różnica między ochroną a wypełnieniem Laravel”

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu