@extends('admin/public/layout') @section('title')草稿管理@endsection @section('content')

草稿管理 管理系统的所有草稿

@foreach($drafts as $draft) @endforeach
类型 标题 内容 用户 时间
{{ trans_draft_type($draft->source_type) }}
{!! $draft->subject !!}
{{--{!! str_limit($draft->subject,50,'...') !!}--}}
{!! $draft->editor_content !!}
@if($draft->user) {{ $draft->user->name }} @endif [UID:{{ $draft->user_id }}] {{ timestamp_format($draft->created_at) }}
@endsection @section('script') @endsection