Updated logo API

This commit is contained in:
2026-04-23 21:32:25 +10:00
parent 110ed5b984
commit 678096b463
22 changed files with 638 additions and 146 deletions
+20
View File
@@ -0,0 +1,20 @@
<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Model;
class UserAction extends Model
{
protected $fillable = [
'user_id',
'user_flight_id',
'message',
];
protected $casts = [
'user_flight_id' => 'integer',
'user_id' => 'integer',
'message' => 'string',
];
}