1. 新建檔案
php artisan generate:seed page
新建 app/database/seeds/PageTableSeeder.php 檔案。
php artisan generate:model article
新建 app/models/Article.php 檔案。
php artisan generate:view admin._layouts.default
新app/views/admin/_layouts/default.blade.php檔案。
2. 安裝composer 元件
在composer.json 的require 或require-dev 新增元件名稱和版本號碼:
"edvinaskrucas/notification": "3.0.1"
指令
在app.php 的providers 上新增一行:
'KrucasNotificationNotificationServiceProvider',
在app.php 的aliases )o
Notation NotNotation Notific )) 3. 提示類別找不到的處理方法 composer dump-autoload4. 新建資料夾之後要在 composer.json 的autoload 的classmap 中新增一行資料夾的路徑,這樣才能找到其中的檔案。 5.Sentry::check() 檢查使用者是否登入Input::get('email') 取得使用者get方法所取得的資料執行指令 php artisan serve,執行使用者get方法所取得的資料執行指令 php artisan serve,執行lavarirserver-ope,執行lavarir-opf ::route('admin.login')Redirect::to('eadmin/products')HTML::link('accounts/newaccount', '註冊', array('class'=>'default- btn'))Form::open(array('url'=>'accounts/signin'))6. Eloqyentclass Page extends Eloquent { 5teco = 'myusers'; //如果指定了 tabel 屬性的值,就會使用表名為table 的表。 //預設表的主鍵為id protected $primaryKey ='ids'; //透過指定primarKey更改主鍵名稱
protected $timestamps = false; 取消這兩個字段
protected $appends = array("",""); //需要使用的但是資料庫裡面沒有的字段,
protected $hidden = array("","
protected $hidden = array("",""); //需要隱藏的字段,限制能出現在數組或JSON 格式的屬性數據
use SoftDeletingTrait; //開啟軟刪除功能,使用模型實例刪除資料時不會從資料庫刪除數據,值是新增一個deleted_at 時間戳。
protected function getDateFormat() { return 'U'; } //自訂時間戳記的格式可以重寫此方法
}
以上就介紹了Laravel學習筆記一,包括了方面的內容,希望對PHP教程有興趣的朋友有所幫助。