Projekt-Cleanup: Alle Dateien basierend auf .gitignore neu indexiert

This commit is contained in:
2026-04-10 21:13:24 +02:00
parent daa688ca7a
commit 3f61033d14
352 changed files with 0 additions and 36208 deletions
-45
View File
@@ -1,45 +0,0 @@
<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Factories\HasFactory;
use Illuminate\Database\Eloquent\Model;
class Bonus extends Model
{
use HasFactory;
protected $fillable = [
'name',
'description',
'image_path',
'brand_color',
'hover_color',
'badges',
'min_deposit',
'max_bet',
'wagering',
'free_spins',
'button_link',
'key_features',
'is_sticky',
'is_no_deposit',
'is_featured',
'order',
'is_active',
];
protected $casts = [
'badges' => 'array',
'key_features' => 'array',
'is_sticky' => 'boolean',
'is_no_deposit' => 'boolean',
'is_featured' => 'boolean',
'is_active' => 'boolean',
];
public function stats()
{
return $this->hasMany(BonusStat::class);
}
}