@extends('layouts.app') @section('page-title', 'Elenco Categorie') @section('page-heading', 'Elenco Categorie') @section('breadcrumbs') @stop @section('content') @include('partials.messages')
@if (Request::has('search') && Request::get('search') != '') @endif
@if (count($categorie)>0) @foreach ($categorie as $categoria) @endforeach @else @endif
@lang('Nome') @lang('Action')
{{ $categoria->nome }}
@lang('No records found.')
@stop @section('styles') @stop