📜  app - 任何代码示例

📅  最后修改于: 2022-03-11 14:56:14.139000             🧑  作者: Mango

代码示例1
/app
    /Config         Stores the configuration files
    /Controllers    Controllers determine the program flow
    /Database       Stores the database migrations and seeds files
    /Filters        Stores filter classes that can run before and after controller
    /Helpers        Helpers store collections of standalone functions
    /Language       Multiple language support reads the language strings from here
    /Libraries      Useful classes that don't fit in another category
    /Models         Models work with the database to represent the business entities.
    /ThirdParty     ThirdParty libraries that can be used in application
    /Views          Views make up the HTML that is displayed to the client.