@extends('themes.admin.'.setting('active_admin_theme').'.layouts.default') @section('content') @push('custom-css') @endpush @php $t = new Handbook_tab(); $tabs = $t->get(); $s = new Handbook_section(); $secs = $s->get(); $i = new Handbook_item(); $itm = $i->get(); @endphp

Members Handbook

{{$title}}

Handbook Tabs

@if($tabs->exists())


@foreach($tabs as $ta) @endforeach
Title Order Created On Actions
{{ucwords($ta->title)}} {{$ta->order}} {{date('d/m/Y',$ta->created_at)}}
@foreach($tabs as $ta) @endforeach @endif

Handbook Sections

@if($tabs->exists())
@if($secs->exists())


@foreach($secs as $se) @endforeach
Title Tab Name Order Created On Actions
{{$se->title}} {{ucwords($se->handbook_tab->get()->title)}} {{$se->order}} {{date('d/m/Y',$se->created_at)}}
@foreach($secs as $se) @endforeach
@endif @else
No Tabs Created Yet.Go create one first.
@endif

Handbook Tab Content

@if($secs->exists())
{!! dropzone('additional_images', 'Handbook_item', 0, 'handbook', 20, 1000, fileTypes('all'), 'image1', false) !!}
@if($itm->exists())


Title Tab Name Section Name Order Created On Actions
@php $ss = new Handbook_section(); $ssec = $ss->get(); @endphp
@endif @else
No Handbook Sections created yet.Go create one first.
@endif
@push('custom-js')