Blog
Laravelなどのコマンド記録2
●Windowsと、XAMPP環境でターミナルからLaravel立ち上げ
php -S localhost:80 -t public
テーブル作成—–テーブル名は複数形にする
1.
php artisan make:migration create_テーブル名(blogs)_table (-m モデル同時作成)
2.実行
php artisan migrate
ロールバック
php artisan migrate:refresh
※失敗したら
composer dump-autoload
でチェック
3.モデル作成—–
php artisan make:model モデル名(Blog)
複数代入設定
4.コントローラー作成
php artisan make:controller コントローラー名(Blog)Controller
5.フォームリクエスト作成バリテーション
php artisan make:request BlogRequest
※public function authorize()
{
return true;
}
対応するコントローラーにuseでリンクを貼る
use App\Http\Requests\BlogRequest;
☆サーバに設置する時の注意!!
.ENVファイルのデバックを必ず変更
APP_DEBUG=false
●シンボリックリンクの変更例
storage/app/upload/customer → public/files/upload/customer
ln -f -n -s ../../../storage/app/upload/customer public/files/upload/customer
●シンボリックリンクの確認
ls -l