Initial commit

This commit is contained in:
jeremy bayse
2026-06-22 16:40:24 +02:00
commit ad127156ff
78 changed files with 13478 additions and 0 deletions
+26
View File
@@ -0,0 +1,26 @@
<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Factories\HasFactory;
use Illuminate\Database\Eloquent\Model;
use Illuminate\Database\Eloquent\Relations\HasMany;
class Chatbot extends Model
{
use HasFactory;
protected $fillable = [
'name',
'slug',
'system_prompt',
];
/**
* Get histories associated with this chatbot.
*/
public function histories(): HasMany
{
return $this->hasMany(ChatbotHistory::class);
}
}