@extends('admin.layouts') @section('css') @endsection @section('content')

邮件投递记录

重 置
@foreach($list as $vo) @endforeach
# 类型 识别码 收信地址 标题 内容 投递时间 投递状态
{{$vo->id}} {{$vo->type == 1 ? 'Email' : ($vo->type == 2? 'ServerChan': 'Bark')}} @if($vo->type == 3) {{$vo->code}} @endif {{$vo->address}} {{$vo->title}} {{$vo->content}} {{$vo->created_at}} @if($vo->status < 0) {{\Illuminate\Support\Str::limit($vo->error)}} @elseif($vo->status > 0) 投递成功 @else 等待投递 @endif
@endsection @section('script') @endsection