@extends('layouts.admin') @section('title', '采集规则') @section('head') @include('admin.partials.modern-index-head') @endsection @section('page_actions') 新建规则 @endsection @section('content')
@forelse($items as $item) @empty @endforelse
规则 目标模块 Cron 状态 最近运行 操作
{{ $item->name }}
运行次数:{{ $item->runs_count }} / 下次:{{ $item->next_run_at?->format('Y-m-d H:i') ?? '-' }}
{{ $item->target_module?->label() ?? '-' }} {{ $item->cron_expression }} @if($item->enabled) 启用 @else 停用 @endif {{ $item->last_run_at?->format('Y-m-d H:i') ?? '-' }}
@csrf
编辑
暂无采集规则
@endsection