@extends('admin.layout.master') @section('css') @endsection @section('content')

{{__('admin.add')}}

@csrf

{{__('admin.select_all')}}

@foreach (languages() as $lang)
@endforeach
@foreach ($routes as $routeKey => $value) @if (isset($value->getAction()['title']) && isset($value->getAction()['type']) && $value->getAction()['type'] == 'parent')
{{-- card title --}}

{{__('admin.'.$value->getAction()["title"]) }}

{{__('admin.select_all')}}

{{-- card list --}}
    @if (isset($value->getAction()['child']) && count($value->getAction()['child'])) @foreach ($value->getAction()['child'] as $key => $child)
    @endforeach @else {{__('admin.no_sub_routes')}} @endif
@endif @endforeach
@endsection @section('js') @endsection