curder / laravel-landing-page
自动加载静态页面并为Laravel生成路由。
3.0.2
2021-07-09 07:48 UTC
Requires
- php: ^7.1|^8.0
- illuminate/contracts: ^5.6|^6.0|^7.0|^8.0
Requires (Dev)
- orchestra/testbench: ^6.0
- phpunit/phpunit: ^9.3
README
项目支持对推广页面的本地模板管理和数据库配置管理通用解决方案。
感谢
环境要求
-
PHP >= 7.0.0
-
Laravel >= 5.5.0
-
Fileinfo PHP 扩展
安装
composer require "curder/laravel-landing-page:^3.0"
配置
在 config/app.php 中注册 ServiceProvider 和 Facade
'providers' => [
// ...
Curder\LandingPages\LandingPagesServiceProvider::class,
],
'aliases' => [
// ...
'LandingPage' => Curder\LandingPages\Facades\LandingPages::class,
],
创建配置文件和数据库迁移文件
php artisan vendor:publish --provider="Curder\LandingPages\LandingPagesServiceProvider"
修改应用根目录下的 config/landing-pages.php 中对应的参数即可。
创建数据表
使用以下命令创建数据库表。
php artisan migrate
使用以下命令在Tinker中添加测试数据。
namespace Curder\LandingPages\Models;
LandingPage::forceCreate(['title' => 'test www title.', 'body' => 'test www body.', 'uri' => 'www/example', 'template' => 'landing-pages.www.example']);
LandingPage::forceCreate(['title' => 'test mobile title.', 'body' => 'test mobile body.', 'uri' => 'mobile/example', 'template' => 'landing-pages.mobile.example']);
发布路由和模板文件
php artisan landing-page:init
执行以上命令后,将在 routes/web.php 中添加一条路由:
Route::get('{slug}/{one?}/{two?}/{three?}/{four?}/{five?}', '\Curder\LandingPages\Http\Controllers\LandingPagesController@show');
并且默认在 resources/views/www/ 和 resources/vies/mobile/ 下新建一个 example.blade.php,您可以根据实际业务需求来自定义。
预览页面
通过以下地址访问页面数据。
https:///www/example
https:///mobile/example
许可
MIT