@extends('admin.master') @section('content')

List All Sections

@foreach ($items as $item) @endforeach
Title Description Created At Action
{{ $item->title }} {{ $item->description }} {{ format_date($item->created_at) }}
{{ Form::open(['url' => Request::url() .'/' . $item->id, 'method' => 'delete', 'id' => 'form-delete-row'.$item->id,]) }} {{ Form::close() }}
@stop