From 4de7510bfd34d0c2f72fd938cc35f1fc2bd57bac Mon Sep 17 00:00:00 2001 From: Andreas Heiberg Date: Wed, 9 Jan 2013 22:31:17 +0100 Subject: [PATCH] fixed typo MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit IĀ supposeĀ stored is what was meant to be typed? --- laravel/documentation/database/eloquent.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/laravel/documentation/database/eloquent.md b/laravel/documentation/database/eloquent.md index f1643717..f05eaf06 100644 --- a/laravel/documentation/database/eloquent.md +++ b/laravel/documentation/database/eloquent.md @@ -520,7 +520,7 @@ ## Mass-Assignment $user->save(); -By default, all attribute key/value pairs will be store during mass-assignment. However, it is possible to create a white-list of attributes that will be set. If the accessible attribute white-list is set then no attributes other than those specified will be set during mass-assignment. +By default, all attribute key/value pairs will be stored during mass-assignment. However, it is possible to create a white-list of attributes that will be set. If the accessible attribute white-list is set then no attributes other than those specified will be set during mass-assignment. You can specify accessible attributes by assigning the **$accessible** static array. Each element contains the name of a white-listed attribute.