Laraサンプルを作る
をテンプレートにして作成
[
トップ
] [
新規
|
一覧
|
単語検索
|
最終更新
|
ヘルプ
]
開始行:
[[Laravel]]
[[ここを参考に:https://www.ritolab.com/entry/48]]
*** ルーティング [#a2b338b6]
[demo@localhost laravel]# vi routes/web.php
Route::get('beginner', 'BeginnerController@index');
*** コントローラ (artisanコマンド) [#l501ed16]
[demo@localhost laravel]# php artisan make:controller Be...
[demo@localhost laravel]# vi app/Http/Controllers/Beginn...
[demo@localhost laravel]# php artisan make:controller Ow...
*** ビュー [#i4a20160]
[demo@localhost laravel]# vi resources/views/beginner.bl...
*** 表示 [#i8e84a05]
[root@pc0700-vm laravel]# php artisan serve --host 0.0.0.0
http://192.168.0.51:8000/beginner
もしくは
http://192.168.0.51/laravel/public/beginner
*** モデル [#m73a7ff9]
[demo@localhost laravel]# php artisan make:model Models/...
[demo@localhost laravel]# vi app/Models/frameworks.php
*** その他 [#m73a7ff9]
[demo@localhost laravel]# php artisan config:clear
[demo@localhost laravel]# php artisan tinker
終了行:
[[Laravel]]
[[ここを参考に:https://www.ritolab.com/entry/48]]
*** ルーティング [#a2b338b6]
[demo@localhost laravel]# vi routes/web.php
Route::get('beginner', 'BeginnerController@index');
*** コントローラ (artisanコマンド) [#l501ed16]
[demo@localhost laravel]# php artisan make:controller Be...
[demo@localhost laravel]# vi app/Http/Controllers/Beginn...
[demo@localhost laravel]# php artisan make:controller Ow...
*** ビュー [#i4a20160]
[demo@localhost laravel]# vi resources/views/beginner.bl...
*** 表示 [#i8e84a05]
[root@pc0700-vm laravel]# php artisan serve --host 0.0.0.0
http://192.168.0.51:8000/beginner
もしくは
http://192.168.0.51/laravel/public/beginner
*** モデル [#m73a7ff9]
[demo@localhost laravel]# php artisan make:model Models/...
[demo@localhost laravel]# vi app/Models/frameworks.php
*** その他 [#m73a7ff9]
[demo@localhost laravel]# php artisan config:clear
[demo@localhost laravel]# php artisan tinker
ページ名: