| 123456789101112131415161718192021222324 |
- <?php
- namespace App\Models;
- use Illuminate\Database\Eloquent\Factories\HasFactory;
- use Illuminate\Database\Eloquent\Model;
- class Request extends Model
- {
- use HasFactory;
- /**
- * The attributes that should be cast to native types.
- *
- * @var array
- */
- protected $casts = [
- 'form' => 'array',
- 'workflow' => 'array',
- 'currentTask' => 'array',
- ];
- protected $guarded = ['id'];
- }
|