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