@extends('layouts.app')
@section('page-title', __('Lingue'))
@section('page-heading', __('Lingue'))
@section('breadcrumbs')
@lang('Lingue')
@stop
@section('content')
@include('partials.messages')
@lang('Code') |
@lang('Full Name') |
@lang('Action') |
@if (count($lingue))
@foreach ($lingue as $lingua)
{{ $lingua->codice }} |
{{ $lingua->nome_esteso }} |
|
@endforeach
@else
@lang('No records found.') |
@endif
@stop
@section('scripts')
@stop