feat: Lernapp mit Mathe/Deutsch/Englisch, Münzsystem und Belohnungen

This commit is contained in:
root
2026-05-05 14:41:09 +00:00
parent 21e40cd2da
commit bd1640994c
45 changed files with 1522 additions and 58 deletions
+8
View File
@@ -0,0 +1,8 @@
<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Model;
class Reward extends Model {
protected $fillable = ['name','description','icon','points_cost','minutes','active'];
protected $casts = ['active' => 'boolean'];
public function redemptions() { return $this->hasMany(RewardRedemption::class); }
}