This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
namespace App\Helpers\Supabase; | |
use Exception; | |
use Illuminate\Http\Client\Response; | |
use Illuminate\Support\Facades\Http; | |
use Illuminate\Support\Collection; | |
use InvalidArgumentException; | |
use PHPSupabase\Service; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<template> | |
<!-- Skeleton loader pendant le chargement --> | |
<div v-if="isLoading" class="relative w-full h-full bg-gray-50 animate-pulse"> | |
<div class="absolute top-4 right-4 flex gap-3"> | |
<div class="w-12 h-8 bg-gray-300 rounded"></div> | |
<div class="w-12 h-8 bg-gray-300 rounded"></div> | |
</div> | |
<div class="p-8"> | |
<div class="h-4 bg-gray-300 rounded w-1/4 mb-4"></div> | |
<div class="space-y-3"> |