@extends('layouts.app') @section('content')
{{__('Создание занятия')}}
@if(count($lessons)) @foreach($lessons as $lesson)
{{$lesson->subject->name}}
{{$lesson->type}}
{{ $lesson->name }}
@endforeach @endif
@endsection