@extends('layouts.default_module') @section('module_name') List of Chapter of {{ $courses->title ?? '' }} @stop @section('add_btn') {!! Form::open(['method' => 'get', 'url' => ['admin/chapter/create/' . ($courses->id ?? $chapter[0]->course_id)], 'files' => true]) !!} {!! Form::submit('Add', ['class' => 'btn btn-success pull-right']) !!} {!! Form::close() !!} @stop @section('table-properties') width="400px" style="table-layout:fixed;" {{-- @endsection --}} @section('table') {!! Form::open(['method' => 'get', 'url' => ['admin/chapter/' . $courses->id ?? ''], 'files' => true]) !!} @include('admin.chapter.partial.searchfilters') {!! Form::close() !!} {{--
--}}
Lecturer No.
Chapter Title
{{--
Decriptions
--}}
Level
Option
@foreach ($chapter as $key => $ch)
{!! $ch->lecture !!}
{!! $ch->title !!}
{{--
{!! $ch->description !!}
--}} {{--
{!! $ch->is_paid == 0 ? 'No' : 'Yes' !!}
--}}
{!! $ch->course_level !!}
{{--
--}}
@section('pagination') {!! $chapter->render() !!} @endsection @endforeach @stop