PHP code example of tyrans / laravel_module

1. Go to this page and download the library: Download tyrans/laravel_module library. Choose the download type require.

2. Extract the ZIP file and open the index.php.

3. Add this code to the index.php.
    
        
<?php
require_once('vendor/autoload.php');

/* Start to develop here. Best regards https://php-download.com/ */

    

tyrans / laravel_module example snippets


composer create-project --prefer-dist tyrans/laravel_module ProductModule

php artisan module:init

composer du

bootstrap/  # laravel项目目录
 -| cache   # 原laravel项目下 /bootstrap/cache 目录
 -| config   # 原laravel项目下 /config 目录
 -| public   # 原laravel项目下 /public 入口
 -| storage   # 原laravel项目下 /storage 目录
 -| app.php   # 原laravel项目下 /bootstrap/app.php 引导文件
 -| route.php   # 本地项目调试路由
src/ # 模块代码的核心目录 - 自建
config/ # 模块相关的配置目录 - 自建

# 创建一个模型
php artisan make:model UserModel

# 创建一个请求
php artisan make:request UserRequest

# 创建一个控制器
php artisan make:controller UserController