import React from 'react'; import { usePage } from '@inertiajs/react'; import { Table, TableBody, TableCell, TableHead, TableHeader, TableRow } from '@/components/ui/table'; import { Badge } from '@/components/ui/badge'; import { Card, CardContent, CardHeader, CardTitle } from '@/components/ui/card'; import { format } from 'date-fns'; interface Purchase { id: number; created_at: string; package: { name: string; price: number; }; status: string; } const ProfileOrders = () => { const { purchases } = usePage().props as any; return (
Keine Bestellungen gefunden.
)}