wip(Member & memberships sections)
All checks were successful
Deploy Roxane to Preprod / deploy (push) Successful in 1m29s

This commit is contained in:
2026-02-03 10:53:23 +01:00
parent e78f86d125
commit f39651748d
35 changed files with 1333 additions and 981 deletions

View File

@@ -0,0 +1,21 @@
@php
$json = is_string($data)
? json_decode($data, true)
: $data;
@endphp
@vite('resources/css/backend.css')
<details class="fi-section-content mt-3">
<summary class="fi-btn fi-btn-size-sm fi-btn-color-gray cursor-pointer">
Afficher les données JSON
</summary>
<div class="bg-black text-white mt-3 p-3 rounded-lg overflow-hidden">
<pre class="fi-code-block text-sm">
{{ json_encode(
$json,
JSON_PRETTY_PRINT | JSON_UNESCAPED_SLASHES | JSON_UNESCAPED_UNICODE
) }}
</pre>
</div>
</details>