@extends('theme::layout.public') @section('seo_title')最新动态 - {{ Setting()->get('website_name') }}@endsection @section('content')

我的草稿

@foreach($drafts as $draft) @if($draft['source_type'] == 'answer')

回答 {{ $draft['subject'] }}

保存于{{ timestamp_format($draft['created_at']) }} · 编辑 舍弃

@elseif($draft['source_type'] == 'question')

问题 编辑{{ $draft['subject'] }}

保存于{{ timestamp_format($draft['created_at']) }} · @if($draft['source_id'] == 0) 编辑 @else 编辑 @endif 舍弃

@elseif($draft['source_type'] == 'article')

文章 {{ $draft['subject'] }}

保存于{{ timestamp_format($draft['created_at']) }} · 编辑 舍弃

@endif @endforeach
@include('theme::layout.right_menu')
@endsection