@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
@endif
@if(is_array($section->sub_content))

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

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