2018-01-11 06:02:33 +08:00
|
|
|
<div class="nav nav-tabs" role="tablist" style="background: #067ec1; color: #FFF;">
|
2018-05-19 03:59:34 +08:00
|
|
|
@lang('widgets.latestnews.news')
|
2018-01-11 06:02:33 +08:00
|
|
|
</div>
|
|
|
|
<div class="card border-blue-bottom">
|
2019-09-17 03:17:51 +08:00
|
|
|
<div class="card-body" style="min-height: 0px">
|
2018-01-11 06:02:33 +08:00
|
|
|
@if($news->count() === 0)
|
|
|
|
<div class="text-center text-muted" style="padding: 30px;">
|
2018-05-19 03:59:34 +08:00
|
|
|
@lang('widgets.latestnews.nonewsfound')
|
2018-01-11 06:02:33 +08:00
|
|
|
</div>
|
|
|
|
@endif
|
|
|
|
|
|
|
|
@foreach($news as $item)
|
2018-03-13 06:58:12 +08:00
|
|
|
<h4 style="margin-top: 0px;">{{ $item->subject }}</h4>
|
|
|
|
<p class="category">{{ $item->user->name }}
|
|
|
|
- {{ show_datetime($item->created_at) }}</p>
|
2018-01-11 06:02:33 +08:00
|
|
|
|
2018-03-13 06:58:12 +08:00
|
|
|
{{ $item->body }}
|
2018-01-11 06:02:33 +08:00
|
|
|
@endforeach
|
|
|
|
</div>
|
|
|
|
</div>
|