| 1234567891011121314151617181920212223242526272829303132 |
- @extends('theme::layout.space')
- @section('seo_title')@if(Auth()->check() && Auth()->user()->id === $userInfo->id )我@else{{ $userInfo->name }} @endif 的回答 - {{ Setting()->get('website_name') }}@endsection
- @section('space_content')
- <h2 class="h4">{{ $answers->total() }} 个回答</h2>
- <div class="stream-list board border-top">
- @foreach($answers as $answer)
- <section class="stream-list-item">
- <div class="qa-rank">
- <div class="answers answered ">
- {{ $answer->supports }} <small> 赞同 </small>
- </div>
- </div>
- <div class="summary">
- <h2 class="title">
- <a href="{{ route('ask.question.detail',['question_id'=>$answer->question_id]) }}" title="{{ $answer->question_title }}">{{ str_limit($answer->question_title,60) }}</a>
- @if($answer->adopted_at>0) <label class="label label-warning ml-5">已采纳</label> @endif
- </h2>
- <p class="text-muted mt-10">{{ str_limit(strip_tags($answer->content),300) }}</p>
- <p class="text-muted">回答于 {{ timestamp_format($answer->created_at) }}</p>
- </div>
- </section>
- @endforeach
- </div>
- <div class="text-center">
- {!! str_replace('/?', '?', $answers->render()) !!}
- </div>
- @endsection
|