|
|
@@ -2,21 +2,10 @@
|
|
|
|
|
|
namespace App\Models;
|
|
|
|
|
|
-use Illuminate\Database\Eloquent\Builder;
|
|
|
-use Illuminate\Foundation\Auth\User as Authenticatable;
|
|
|
-use Illuminate\Notifications\Notifiable;
|
|
|
-use Laravel\Sanctum\HasApiTokens;
|
|
|
-
|
|
|
-/**
|
|
|
- * Admin
|
|
|
- * @mixin Builder
|
|
|
- * @method static Builder|static where($column, $operator = null, $value = null, $boolean = 'and')
|
|
|
- */
|
|
|
-class PaymentOrder extends Authenticatable
|
|
|
+class PaymentOrder extends BaseModel
|
|
|
{
|
|
|
- use HasApiTokens, Notifiable;
|
|
|
+
|
|
|
protected $table = 'payment_orders';
|
|
|
- // protected $hidden = ['created_at', 'updated_at'];
|
|
|
protected $fillable = ['type', 'order_no', 'member_id', 'amount', 'channel', 'bank_name', 'account', 'card_no', 'status', 'callback_url', 'callback_data', 'remark', 'pay_no', 'pay_url', 'pay_data', 'fee'];
|
|
|
|
|
|
|
|
|
@@ -24,15 +13,4 @@ class PaymentOrder extends Authenticatable
|
|
|
{
|
|
|
return $this->belongsTo(User::class, 'member_id', 'member_id')->select(['member_id','username','first_name']);
|
|
|
}
|
|
|
-
|
|
|
-
|
|
|
- protected function getCreatedAtAttribute($value)
|
|
|
- {
|
|
|
- return \Carbon\Carbon::parse($value)->setTimezone('Asia/Shanghai')->format('Y-m-d H:i:s');
|
|
|
- }
|
|
|
-
|
|
|
- protected function getUpdatedAtAttribute($value)
|
|
|
- {
|
|
|
- return \Carbon\Carbon::parse($value)->setTimezone('Asia/Shanghai')->format('Y-m-d H:i:s');
|
|
|
- }
|
|
|
}
|