@extends('adminlte::page') @section('title', '收件箱') @section('content_header')

收件箱

@stop @section('content')
@if($mail_list->isEmpty()) @else @foreach($mail_list as $mail) @endforeach @endif
发件人 收件人 标题 接收时间 操作
{{$mail->from}} {{$mail->to}} {{$mail->title}} {{$mail->received_at}}
@stop @section('css') {{-- Add here extra stylesheets --}} @stop @section('js') @stop