@if (count($customSectons) > 0)
@foreach ($customSectons as $customSecton)
@php
$content = App\Models\CustomSectionContent::where(
'custom_section_id',
$customSecton->id,
)->first();
$customStatus = json_decode($aboutSec->about_custom_section_status, true);
$sectionStatus = isset($customStatus[$customSecton->id]) ? $customStatus[$customSecton->id] : 0;
@endphp
@endforeach
@endif