@extends('admin.frame_list')
@section('content_btn')
添加活动主题
@stop
@section('table_data')
活动主题名称 |
创建时间 |
操作 |
@foreach ($activesThemes as $theme)
{{ $theme->name }} |
{{ $theme->created_at }} |
活动列表 |
编辑
@if ( !$theme->actives->count() )
| 删除
@endif
|
@endforeach
@stop
@section('render_data')
{{ $activesThemes->render() }}
@stop