@extends('layouts.admin') @section('title') Breaking news @stop @section('content')
@foreach($breaking_news as $_breakingnews) @endforeach
Titolo Data Online
{{$_breakingnews->title}} {{date("d/m/Y H:i:s", strtotime($_breakingnews->date))}} {{$_breakingnews->online ? 'Si' : 'No'}} {!! Form::open(array('class' => 'form-inline', 'method' => 'DELETE', 'route' => array('breaking_news.destroy', $_breakingnews->id))) !!} {!! Form::close() !!}
@stop @section('extra_css') @stop @section('extra_js') @stop