使用Swiper幻灯片组件
-
将幻灯片图片地址保存到数据库中,表定义如下
$table->increments('id'); $table->timestamps(); $table->string('title')->comment('标题|input'); $table->string('url')->comment('链接|input'); $table->text('pic')->comment('图片|image'); $table->integer('click')->comment('查看次数|input'); $table->tinyInteger('enable')->default(1)->comment('状态|radio|1:开启,2:关闭');
-
自定义Blade标签
在服务提供者的boot方法中使用自定义的TapService,用于对Blade标签进行注册
其中,TapService方法如下
<?php
namespace Modules\Artical\Services;
use Blade;
use function foo\func;
class TagService
{
// boot中使用 (new TagService())->make()
public function make()
{
$this->slide();
}