Fix: socket permissions para nginx

This commit is contained in:
2026-05-21 23:21:41 -06:00
parent b574ae1ed3
commit 28faa727b1
32 changed files with 2144 additions and 6 deletions
+24
View File
@@ -0,0 +1,24 @@
<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Model;
use Illuminate\Database\Eloquent\Relations\BelongsTo;
class WhatsappLog extends Model
{
public $timestamps = false;
protected $guarded = [];
protected $casts = [
'payload' => 'array',
'leido' => 'boolean',
'created_at' => 'datetime',
];
public function alumno(): BelongsTo
{
return $this->belongsTo(Alumno::class);
}
}