@extends('panel.layouts.layout') @section('content')
@lang('home.courses_list')
@lang('home.home') / @lang('home.chapters') / @lang('home.chapters_list')
@if ($errors->any()) @foreach ($errors->all() as $error)
×{{ $error }}
@endforeach @endif @if(Session::has('success'))
×{{ Session::get('success') }}
@endif
@csrf
@foreach($lectures as $lecture) @endforeach
# @lang('home.title') @lang('home.content') @lang('home.availability') @lang('home.edit') @lang('home.delete')
{{ @$lecture->id }} {{ @$lecture->translations->first()->title }} {{ @$lecture->translations->first()->content }} {{ @$lecture->availability }}
  • @include('panel.courses.lectures.delete_from_list')
    @stop @section('jsCode') @stop