📦 Supabase PHP CRUD Example

🔌 Connection Status: ✅ Connected to Supabase!
📊 Database: Naija Pay (eu-central-1)
🔄 Shared with: Your Flutter App (same data!)

âž• Add New Product

📋 Products List (0 total)

No products yet. Add your first product above!


📱 For Your Flutter App:

// Use the SAME credentials in Flutter
final supabase = SupabaseClient(
  'https://qsuwdodlvnkcgyexxxvz.supabase.co',
  'eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpc3MiOiJzd...'
);

// Get the same data!
final products = await supabase.from('products').select('*');