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

Laravel-adminのインストール方法(laravel8)

Posted at

##自分用メモ

windows10
wsl2:ubuntu
PHP 7.4.16
laravel8.12
laravel-admin1.8

###Laravelのインストール

まず普通にlaravelをインストールする。

ubuntu.
composer create-project laravel/laravel --prefer-dist admin

###laravel-adminのインストール
その後、
.envファイル,database.configを設定する。
databasename、username,passの設定。

名前を付けたadminフォルダに移動して、

ubuntu.
composer require encore/laravel-admin
ubuntu.
 php artisan vendor:publish --provider="Encore\Admin\AdminServiceProvider"
ubuntu.
 php artisan admin:install

で自分で設定したローカルホストで見れます。
example:http://localhost:8001/admin/auth/login

以上

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?