17
19

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 3 years have passed since last update.

Laravel/ui のインストール

Last updated at Posted at 2020-09-25

#インストール
Laravel 6 からcssフレームワークが分離したため、別にダウンロードが必要です。

##laravel/uiのダウンロード
"1.x" で最新版がインストールされますので、必ず入力しましょう。

$ composer require laravel/ui "1.x" --dev

最初、以下のコマンドでダウンロードしたため、スカフォールド生成時にエラーが発生しました。注意してください。

$ composer require laravel/ui:^1.0 --dev //最新版ではないのでエラーを吐きます注意してください。

##基本的なスカフォールドを生成

ui系

$ php artisan ui bootstrap
$ php artisan ui vue
$ php artisan ui react

autu系
Reactで実装する場合

$ php artisan ui bootstrap --auth
$ php artisan ui react --auth

Vueで実装する場合

$ php artisan ui bootstrap --auth
$ php artisan ui vue --auth

CSSの出力
JavaScriptの出力

$ npm install
$ npm run dev
17
19
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
17
19

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?