This commit is contained in:
toom1996
2025-07-24 15:49:49 +08:00
parent 07fe136d62
commit b33b922b65
25 changed files with 25662 additions and 809 deletions

View File

@ -10,6 +10,13 @@ namespace App\Model;
* @property int $id
* @property string $name
* @property string $url
* @property \Carbon\Carbon $created_at
* @property int $created_by
* @property int $website
* @property int $is_delete
* @property \Carbon\Carbon $updated_at
* @property int $updated_by
* @property string $desc
*/
class AppNewsColumn extends Model
{
@ -26,5 +33,5 @@ class AppNewsColumn extends Model
/**
* The attributes that should be cast to native types.
*/
protected array $casts = ['id' => 'integer'];
protected array $casts = ['id' => 'integer', 'created_at' => 'datetime', 'created_by' => 'integer', 'website' => 'integer', 'is_delete' => 'integer', 'updated_at' => 'datetime', 'updated_by' => 'integer'];
}