@extends('[% layout_name %]')
@section('content')
@if(Session::has('success_message'))
@if(count($[% model_name_plural_variable %]) == 0)
[% no_models_available %]
@else
[% header_cells %]
|
@foreach($[% model_name_plural_variable %] as $[% model_name_singular_variable %])
[% body_cells %]
|
|
@endforeach
{!! $[% model_name_plural_variable %]->links('[% pagination_view_name %]') !!}
@endif
@endsection