博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Laravel directory structure
阅读量:6305 次
发布时间:2019-06-22

本文共 883 字,大约阅读时间需要 2 分钟。

S/N DIRECTORY DESCRIPTION

1 /app contains all of your application code
2 /app/Console contains all of your artisan commands
3 /app/Events contains event classes
4 /app/Exceptions contains exception handling classes
5 /app/Http contains controllers, filters, and requests
6 /app/Jobs contains jobs that can be queued
7 /app/Listeners contains handler classes for events
8 /bootstrap contains files required by the bootstrap framework
9 /config contains the application configuration files
10 /database Contains database migrations and seeds. It is also used to store the database for SQLite
11 /public contains the front controllers and assets such as images, CSS, JavaScript etc.
12 /storage contains compiled blade templates, filed based sessions, etc.
13 /tests contains automated unit tests
14 /vendor contains composer dependencies

转载于:https://www.cnblogs.com/qike/p/5796652.html

你可能感兴趣的文章
TreeSet的用法
查看>>
防HTTP慢速攻击的nginx安全配置
查看>>
深入理解PHP内核(十四)类的成员变量及方法
查看>>
Spring Boot2.0+中,自定义配置类扩展springMVC的功能
查看>>
参与博客编辑器改版,我的礼物 感谢51cto
查看>>
JavaWeb笔记——JSTL标签
查看>>
Eclipse插件大全 挑选最牛的TOP30
查看>>
一些实用性的总结与纠正
查看>>
Kubernetes概念
查看>>
逻辑卷管理器(LVM)
查看>>
一个小代码,欢迎大佬的意见,求指正
查看>>
搭建LAMP架构
查看>>
神经网络注意力机制--Attention in Neural Networks
查看>>
Spring.Net+WCF实现分布式事务
查看>>
在Linux上高效开发的7个建议
查看>>
java数据结构 - 数组使用的代码
查看>>
个人简历-项目经验
查看>>
swoole异步任务task处理慢请求简单实例
查看>>
DHCP
查看>>
oracle数据泵导入分区表统计信息报错(四)
查看>>