[[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 BeginnerController
[demo@localhost laravel]# vi app/Http/Controllers/BeginnerController.php
[demo@localhost laravel]# php artisan make:controller OwnerController --resource
*** ビュー [#i4a20160]
[demo@localhost laravel]# vi resources/views/beginner.blade.php
*** 表示 [#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/frameworks
[demo@localhost laravel]# vi app/Models/frameworks.php
*** その他 [#m73a7ff9]
[demo@localhost laravel]# php artisan config:clear
[demo@localhost laravel]# php artisan tinker