chatbot name,email,phone stored in Database

This commit is contained in:
UronShrestha
2024-07-10 17:25:14 +05:45
parent c566bf9c27
commit 2510de390a
3 changed files with 83 additions and 39 deletions

View File

@ -8,4 +8,5 @@ use Illuminate\Database\Eloquent\Model;
class UserChat extends Model
{
use HasFactory;
protected $fillable = ['name', 'phone_number', 'email'];
}