@extends('dashbord.layouts.master') @php $formatTitle = function ($value) { if (is_array($value)) { return $value[app()->getLocale()] ?? $value['en'] ?? $value['ar'] ?? '-'; } $decoded = json_decode($value, true); if (json_last_error() === JSON_ERROR_NONE && is_array($decoded)) { return $decoded[app()->getLocale()] ?? $decoded['en'] ?? $decoded['ar'] ?? '-'; } return $value ?: '-'; }; @endphp @section('toolbar')