@extends('layouts.list-corsi') @section('page-title', 'Elenco Corsi') @section('page-heading', 'Elenco Corsi') @section('content') @include('partials.messages')
@foreach($categorie as $categoria)
{{$categoria->nome}}
@endforeach
@foreach($categorie as $categoria)
@foreach($corsi as $corso) @if($corso->id_categoria==$categoria->id)
@php $video = explode('/',$corso->url); @endphp @if(count($video)>6)@endif

{{$corso->titolo}}

@endif @endforeach
@endforeach
@stop @section('scripts') @stop