@extends('layouts.admin') @section('title') @lang(ucfirst($section->name).' Section') @endsection @section('breadcrumb')

@lang(ucfirst($section->name).' Section')

@lang('Back')
@endsection @section('content')
@if ($section->content)

@lang(ucfirst($section->name).' Content')

@csrf
@if (@$section->content->image)
@lang('Image size : 720 x 700 px')
@endif
@endif
@if(is_array($section->sub_content))

@lang(ucfirst($section->name).' Sub Content')

@forelse ($section->sub_content as $key => $info) @empty @endforelse
@lang('Icon') @lang('Title') @lang('Details') @lang('Action')
{{$info->title}} {{Str::limit($info->details,30)}}
@lang('No Data Found')
@endif @endsection @push('script') @endpush