โครงสร้าง laravel การทำโปรเจค
RUN git clone https://github.com/BenzZero/laravel-structure.git
RUN composer install
RUN php artisan serve AND npm run dev
Open http://localhost:8000 to view it in the browser.
laravel
├───app
│ ├───Console
│ │ └───Kernel.php
│ ├───Exceptions
│ │ └───Handler.php
│ ├───Http
│ │ ├───Controllers
│ │ │ └─── ...
│ │ ├───Middleware
│ │ │ └─── ...
│ │ └───Kernel.php
│ └───Models
│ └─── ...
├───config
│ └─── ...
├───database
│ ├───migrations
│ │ └─── ...
│ └───seeders
│ └─── ...
├───public
│ ├───.htaccess
│ ├───index.php
│ └───robots.txt
├───resource
│ ├───css
│ ├───js
│ ├───lang
│ └───views
├───route
│ ├───api
│ └───web
├───.env
├───composer.json
├───package.json
└───...