@extends('adminlte::page') @section('title', 'スクレイピングサイト一覧') @section('content_header')

スクレイピングサイト一覧

@stop @section('content')

スクレイピングサイト一覧

@foreach($sites as $site) @endforeach
サイト名 説明 実行間隔 最新状態 最終実行 実行時間 操作
{{ $site->name }} {{ $site->description }} {{ $site->expected_interval_minutes }}分 @switch($site->latest_status) @case('pending') 待機中 @break @case('running') 実行中 @break @case('success') 成功 @break @case('failure') 失敗 @break @case('abnormal') 停止中 @break @endswitch @if($site->last_started_at || $site->last_finished_at) @if($site->last_finished_at) {{ $site->last_finished_at->format('Y/m/d H:i') }} @else {{ $site->last_started_at->format('Y/m/d H:i') }} @endif @else - @endif @if($site->latest_execution_time !== null) {{ $site->latest_execution_time }}秒 @else - @endif ログ 編集
@csrf @method('DELETE')
@stop @section('css') @stop