@extends('Admin.default'); @section('title','数据展示页') @section("content")
{{--
--}} {{--
--}} {{-- --}} {{-- --}} {{-- --}} {{--
--}} {{--
--}}

表头

@if(session()->has("data"))
  • {{ session('data')['msg'] }}
  • @endif @foreach ($list as $item) @endforeach
    # 时间 黑包 白包 百分比:黑包/(黑包+白包)
    {{ $item->id }} {{ $item->time_str }} {{ $item->allow }} {{ $item->stop }} {{ $item->allow == 0 ? 0 : round($item->allow/($item->allow + $item->stop)*100, 2).'%'}}
    {{ $list->links() }}
    @endsection