@extends('layouts.admin') @section('title') Pagine web @stop @section('content')
Aggiungi
@foreach($pages as $page) @endforeach
Titolo Online
{{$page->title}} {{$page->online ? 'Si' : 'No'}} {!! Form::open(array('class' => 'form-inline', 'method' => 'DELETE', 'route' => array('pages.destroy', $page->id))) !!} {!! Form::close() !!}
@stop @section('extra_css') @stop @section('extra_js') @stop