LoginSignup
1
2

More than 1 year has passed since last update.

Laravelフォルダを簡単な表にしてみた

Last updated at Posted at 2022-01-09

Laravelのフォルダ

簡易一覧表

フォルダ名 内容
app アプリケーションのプログラム部分をまとめている。(Controllersフォルダ、Modelがある。)
bootstrap アプリケーション実行時、最初に処理される内容がまとめられている
config 設定関係のファイルがまとめられている。
database データベースに関するファイルがまとめられている。(factories・migrations・seedsフォルダがある。)
public 公開フォルダ。Javascriptなどがまとめられている。(css・jsフォルダがある。)
resources リソース関係の配置場所。(viewsフォルダがある。vue.jsの中身を配置する場所。)
routes ルートの保存場所。(web.phpがある。)
storage ファイルの保存場所。ログファイルがある。
tests ユニットテスト関係のファイルがある。
vendor フレームワークの本体がある。(laravel/framework/src/illuminateがある。)

※現時点で筆者がよく使うフォルダやファイルを太字にしております。

1
2
2

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
1
2