#view他のありかを探る
http://{vagrant sv ip}/webapp000/public/
にあるリンク[http(s)://laravel.com/docs]が書かれているviewファイルは???
command
$ grep -rl 'https://laravel.com/docs' ./*
./readme.md
./resources/views/welcome.blade.php
welcome.blade.phpを読み込んでるのは?
↑これはhtmlが書かれているviewなので…
command
$ grep -rl 'welcome' ./*
./routes/web.php
/routes/web.php
Route::get('/', function () {
return view('welcome');
});
/(webapp000/public/) でアクセスしたら
view.welcomeを返してるんですかねー
#HTMLをいじいじしてみる
##formを作成の下準備
ここはググった
command
$ /home/vagrant/composer.phar require laravelcollective/html
config/app.php
providers =>
Collective\Html\HtmlServiceProvider::class,
aliases=>
'Form' => Collective\Html\FormFacade::class,
'Html' => Collective\Html\HtmlFacade::class,
↑を追加
んな感じでちょくちょくララってみてる