Laravel admin 作業メモ

やったこと

この記事を参考にLarave-adminでCRUDの処理をできるようにする。

tac-blog.tech

エラー発生

Productsのリソースを扱うサンプルのところで、次のエラーが出た。

f:id:shimabukuromeg:20181025065208p:plain

Config error.

Disk [admin] not configured, please add a disk config in `config/filesystems.php`.

エラーへの対策

エラーメッセージを見るに設定ファイルがおかしそう。Laravel Adminの公式ページにある Upload to local するときの config/filesystems.php: の設定をそのままコピーするとなおった。

公式ページ

Laravel-admin

f:id:shimabukuromeg:20181025065612p:plain

修正箇所(config/filesystems.php

f:id:shimabukuromeg:20181025065658p:plain

動作確認

laravel を立ち上げ直して、改めてアクセスする

f:id:shimabukuromeg:20181025070155p:plain

ちゃんと登録できた。

f:id:shimabukuromeg:20181025070116p:plain

めっちゃ便利だ