add habit back

This commit is contained in:
2025-11-13 14:06:21 +03:00
parent 0917c2696b
commit 9452d40149
9 changed files with 308 additions and 3 deletions

14
app/Models/Habit.php Normal file
View File

@@ -0,0 +1,14 @@
<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Model;
class Habit extends Model
{
protected $guarded = [];
protected $casts = [
'completions' => 'array'
];
}