@extends('home') @section('title') @lang('site.site_name') @endsection @section('styles') @endsection @php $list = ['category','short','seo','photo','gallery','video','pdf','banner','link'] @endphp @section('content')
{{__('Categories')}}

@foreach ($list as $key => $v) @endforeach @foreach ($categories as $index => $item) @php $arr = @$item->data ?? array(); @endphp @foreach ($list as $key => $v) @endforeach @endforeach
{{__('Image')}} {{__('Title')}}{!! __(ucfirst($v)) !!}
{!! __(ucfirst(Str::plural($item->section))) !!} @if ($item->depth > 1) {!! str_repeat('-',$item->depth) !!} @endif {{ $item->title }} @if (array_key_exists($v,$arr)) @else - @endif
@endsection @section('scripts') {!! Html::script(Theme::current()->assetPath.'/global/plugins/bootstrap-confirmation/bootstrap-confirmation.min.js') !!} {!! Html::script(Theme::current()->assetPath.'/global/plugins/select2/js/select2.full.min.js') !!} {!! Html::script(Theme::current()->assetPath.'/global/plugins/bootstrap-fileinput/bootstrap-fileinput.js') !!} {!! Html::script(Theme::current()->assetPath.'/global/plugins/bootstrap-markdown/lib/markdown.js') !!} {!! Html::script(Theme::current()->assetPath.'/global/plugins/bootstrap-switch/js/bootstrap-switch.min.js') !!} {!! Html::script(Theme::current()->assetPath.'/global/plugins/bootstrap-markdown/js/bootstrap-markdown.js') !!} {!! Html::script(Theme::current()->assetPath.'/global/plugins/jquery-validation/js/jquery.validate.min.js') !!} {!! Html::script(Theme::current()->assetPath.'/global/plugins/jquery-validation/js/additional-methods.min.js') !!} {!! Html::script(Theme::current()->assetPath.'/pages/scripts/form-validation.js') !!} @endsection