@php
$checked = 0;
$label = ucfirst(str_replace('_', ' ', $c));
$serial = 1;
$width = 1;
$is_exist = $settings_obj->where('key', $c)->first();
if ($is_exist) {
$checked = $is_exist->status;
$label = $is_exist->label;
$serial = $is_exist->serial ?? 1;
$width = $is_exist->width ?? 1;
}
@endphp
@if($c == 'action')