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

{{ $doing->user->name }} {{ $doing->action_text }} ·

{{ $doing->subject }}

@if(in_array($doing->action,['answer','follow_question','append_reward']))
{{ str_limit(strip_tags($doing->content),300) }}
@endif
@endforeach
{!! str_replace('/?', '?', $doings->render()) !!}
@include('theme::layout.right_menu')
@endsection