ok
Direktori : /home2/selectio/www/myclassicfit.com-1/app/Model/ |
Current File : //home2/selectio/www/myclassicfit.com-1/app/Model/RefundStatus.php |
<?php namespace App\Model; use Illuminate\Database\Eloquent\Factories\HasFactory; use Illuminate\Database\Eloquent\Model; class RefundStatus extends Model { use HasFactory; protected $casts = [ 'refund_request_id' => 'integer', 'change_by' => 'string', 'change_by_id' => 'string', 'status' => 'string', 'message' => 'string', ]; }