@if($news->count() === 0)
No news items
@endif @foreach($news as $item)
{{ $item->subject }}
{{ Form::open(['route' => 'admin.dashboard.news', 'method' => 'delete', 'class' => 'pjax_news_form']) }} {{ Form::hidden('news_id', $item->id) }} {{ Form::button(' delete', [ 'type' => 'submit', 'class' => ' btn btn-danger btn-xs text-small', 'onclick' => "return confirm('Are you sure?')" ]) }} {{ Form::close() }}
{!! $item->body !!}

@endforeach

Add News

{{ Form::open(['route' => 'admin.dashboard.news', 'method' => 'post', 'class' => 'pjax_news_form']) }}
{{ Form::label('subject', 'Subject:') }} {{ Form::text('subject', '', ['class' => 'form-control']) }}
{{ Form::label('body', 'Body:') }} {!! Form::textarea('body', '', ['id' => 'news_editor', 'class' => 'editor']) !!}
{{ Form::button(' add', ['type' => 'submit', 'class' => 'btn btn-success btn-s']) }} {{ Form::close() }}
@section('scripts') @parent @endsection