LoginSignup
1
1

More than 5 years have passed since last update.

Laravel5.5のディレクトリ構造まとめ

Posted at

自分で追加したディレクトリも入ってますが。

├── app
│   ├── Console ... タスクスケジュール
│   ├── Exceptions ... 例外ハンドラ
│   ├── Http
│   │   ├── Controllers ... 処理クラス
│   │   │   ├── Admin
│   │   │   ├── Auth
│   │   │   ├── Internal
│   │   │   └── Manager
│   │   ├── Middleware ... 認証やCSRF保護など
│   │   └── Requests ... リクエストクラス (バリデーションの設定等)
│   ├── Libraries ... 共通処理クラス
│   │   └── Google ... TagManager、Gmail等の詳細なGoogle APIの処理
│   ├── Models ... モデルクラス
│   ├── Providers ... 起動処理クラス?
│   └── Rules ... カスタムバリデーションクラス
├── config ... 設定ファイル
├── database
│   ├── factories ... データベースのテスト
│   ├── migrations ... マイグレーション
│   └── seeds ... データベースのテストシーダー
├── node_modules
│   ├── bootstrap-sass ... Bootstrapの細かい設定
│   │   └── assets
│   │   ├── fonts
│   │   │   └── bootstrap
│   │   ├── images
│   │   ├── javascripts
│   │   │   └── bootstrap
│   │   └── stylesheets
│   │   └── bootstrap
│   │   └── mixins
├── public ... コンパイル済みのフロントエンドのソース
│   ├── css
│   ├── fonts
│   │   └── vendor
│   │   ├── bootstrap-sass
│   │   │   └── bootstrap
│   │   └── font-awesome-scss
│   └── js
├── resources ... コンパイル前のフロントエンドのソース
│   ├── assets
│   │   ├── js
│   │   └── sass
│   ├── lang
│   │   └── en
│   └── views ... viewテンプレート
├── routes ... ルーティング設定権限ごとのルーティング
├── tests ... テストケース
│   ├── Feature
│   └── Unit
└── vendor ... インストール済みパッケージ

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