@extends('layouts.base') @section('title', '消息列表') @section('content')
  • 消息列表
总数:{{$list->total()}}
@foreach($list as $row) @endforeach
ID 会员 标题 已读 消息类型 时间 详情
{{$row->id}} @if($row->uid != 0)
@if ($row->hasOneMember->nickname) {{$row->hasOneMember->nickname}} @else {{$row->hasOneMember->mobile}} @endif @else APP内所有会员 @endif
{{$row->title}} @if($row->is_read == 0)@else@endif{{$row->read_status}} {{$row->created_at}} 消息内容
{!!$pager!!}
@endsection