Updated logo API
This commit is contained in:
@@ -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',
|
||||
];
|
||||
}
|
||||
Reference in New Issue
Block a user