|
{{ $item->published_at }}
|
{{ $item->title }}
|
{{ $item->articleAuthor ? $item->articleAuthor->full_name : '' }}
|
{{ $item->articleType ? $item->articleType->title : '' }}
|
{!! Form::button('Run Report', ['data-article_slug' => $item->slug, 'class' => 'btn btn-default btn-block article_report', 'disabled' => $item->newsletters->isEmpty()]) !!}
|
@if($item->top_article == '1')
{!! Form::button('Current', ['class' => 'btn btn-info btn-block top_article', 'disabled']) !!}
@else
{!! Form::button('Top Article', ['class' => 'btn btn-default btn-block top_article']) !!}
@endif
|
Preview
|
@include('admin.partials.index_page.delete_button', ['action' => 'ArticlesController@destroy', 'value' => $item->slug])
|