Première grosse version fonctionnel

This commit is contained in:
2026-04-22 23:30:31 +02:00
commit ccbe5ad801
329 changed files with 29518 additions and 0 deletions
+15
View File
@@ -0,0 +1,15 @@
<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Model;
class EmotionRecord extends Model
{
protected $fillable = ['user_id', 'emotion', 'intensity', 'note'];
public function user()
{
return $this->belongsTo(User::class);
}
}