Fix bin/publish: use correct .env path for rspade_system Fix bin/publish script: prevent grep exit code 1 from terminating script 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
47 lines
1014 B
PHP
Executable File
47 lines
1014 B
PHP
Executable File
<?php
|
|
|
|
namespace App\Models;
|
|
|
|
use App\RSpade\Core\Database\Models\Rsx_Model_Abstract;
|
|
|
|
/**
|
|
* _AUTO_GENERATED_ Database type hints - do not edit manually
|
|
* Generated on: 2025-09-28 10:36:08
|
|
* Table: flash_alerts
|
|
*
|
|
* @property int $id
|
|
* @property mixed $session_id
|
|
* @property string $message
|
|
* @property mixed $class_attribute
|
|
* @property string $created_at
|
|
* @property int $created_by
|
|
* @property int $updated_by
|
|
* @property string $updated_at
|
|
*
|
|
* @mixin \Eloquent
|
|
*/
|
|
class FlashAlert extends Rsx_Model_Abstract
|
|
{
|
|
// Required static properties from parent abstract class
|
|
public static $enums = [];
|
|
public static $rel = [];
|
|
|
|
/**
|
|
* _AUTO_GENERATED_ Date columns for Carbon casting
|
|
*/
|
|
protected $dates = [
|
|
'created_at',
|
|
'updated_at',
|
|
];
|
|
|
|
protected $table = 'flash_alerts';
|
|
|
|
/**
|
|
* The attributes that should be cast to native types.
|
|
*
|
|
* @var array
|
|
*/
|
|
protected $casts = [
|
|
'created_at' => 'datetime',
|
|
];
|
|
} |