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

邮件投递记录

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