make('Illuminate\Contracts\Console\Kernel')->bootstrap(); echo "
Name: {$admin->name}
"; echo "Email: {$admin->email}
"; echo "ID: {$admin->id}
"; // Sammlung prüfen $collection = $admin->nailPolishes; echo "| ID | Name | Nummer | Bild |
|---|---|---|---|
| {$polish->id} | "; echo "{$polish->name} | "; echo "{$polish->number} | "; echo "" . ($polish->image_path ? "✅" : "❌") . " | "; echo "
❌ Keine Lacke in der Sammlung
"; } // Alle Lacke prüfen echo "| ID | Name | Nummer | Bild | In Sammlung |
|---|---|---|---|---|
| {$polish->id} | "; echo "{$polish->name} | "; echo "{$polish->number} | "; echo "" . ($polish->image_path ? "✅" : "❌") . " | "; echo "" . ($inCollection ? "✅" : "❌") . " | "; echo "
❌ Keine Lacke in der Datenbank
"; } } else { echo "{$e->getMessage()}
"; } ?>