20
14

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.

laravel-adminインストール手順

Last updated at Posted at 2018-11-10

##laravelインストール

composerでバージョン指定インストール

> composer create-project "laravel/laravel=5.6.*" testlaravel

バージョン確認

> php artisan -V
Laravel Framework 5.6.39

xamppなどで表示させると下記のlaravelデフォルトの画面が表示される

20181110_laravelTOP.PNG

laravel-adminインストール

###インストール

> composer require encore/laravel-admin

.envファイルにDBの情報を記載する

DB_CONNECTION=mysql
DB_HOST=127.0.0.1
DB_PORT=3306
# 作成したDB名にする
DB_DATABASE=testlaravel
# 使用するユーザ名にする
DB_USERNAME=root
# パスワードを記載する
DB_PASSWORD=root

###下記でファイルの追加

> php artisan vendor:publish --provider="Encore\Admin\AdminServiceProvider"

###下記でmigrate等更にインストール

> php artisan admin:install

###DBにlaravel-adminのテーブルが追加される
20181110_laravel-admin_DB.PNG

###ログイン画面を表示する
http://localhost/adminにアクセスするとlaravel-adminのログイン画面が表示される
20181110_laravel-adminTOP.PNG

##参照元
laravel-admin
https://laravel-admin.org/docs/#/

Laravel-adminの立ち上げ方
https://qiita.com/masahirok_jp/items/227e4313ecf558fb9d11

20
14
1

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
20
14

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?