0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

PHPフレームワーク Laravel その2

Posted at

welcome画面からの続き

#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,

↑を追加

んな感じでちょくちょくララってみてる:zzz:

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?