@extends('layouts.app') @section('page-title', 'Elenco Corsi') @section('page-heading', 'Elenco Corsi') @section('breadcrumbs') @stop @section('content') @include('partials.messages')
@if (Request::has('search') && Request::get('search') != '') @endif
@if (count($corsi)) @foreach ($corsi as $corso) @endforeach @else @endif
@lang('Titolo') @lang('Categoria') @lang('Lingua') @lang('Action')
{{ $corso->titolo }} {{ $corso->nome}} {{ $corso->nome_esteso}}
@lang('No records found.')
@stop @section('styles') @stop