@extends('Common::admin.layout.page') @section('page')
@csrf

{{ $title }}

@php $fixedContacts = [ 'whatsapp' => 'Whatsapp', 'youtube' => 'Youtube', 'tiktok' => 'Tiktok', 'facebook' => 'Facebook', 'email' => 'Email', 'phone' => 'Phone', 'location' => 'Location', ]; @endphp @foreach ($fixedContacts as $key => $label) @php $contact = $contacts->where('key', $key)->first(); $val = $contact ? ($contact->value['all'] ?? ($contact->value ?? '')) : ''; // Handle case where value might be an object/array casted if(is_object($val) || is_array($val)) { $val = $contact->value['all'] ?? ''; } @endphp @endforeach
@lang('Type') @lang('Value') @lang('Delete')
@stop