Payment.php 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081
  1. <?php
  2. namespace App\Models;
  3. use Auth;
  4. use Illuminate\Database\Eloquent\Builder;
  5. use Illuminate\Database\Eloquent\Model;
  6. use Illuminate\Database\Eloquent\Relations\BelongsTo;
  7. /**
  8. * 支付单
  9. *
  10. * @property int $id
  11. * @property string $trade_no 支付单号(本地订单号)
  12. * @property int $user_id 用户ID
  13. * @property int $oid 本地订单ID
  14. * @property int $amount 金额,单位分
  15. * @property string|null $qr_code 支付二维码
  16. * @property string|null $url 支付链接
  17. * @property int $status 支付状态:-1-支付失败、0-等待支付、1-支付成功
  18. * @property \Illuminate\Support\Carbon $created_at 创建时间
  19. * @property \Illuminate\Support\Carbon $updated_at 最后更新时间
  20. * @property-read string $status_label
  21. * @property-read \App\Models\Order $order
  22. * @property-read \App\Models\User $user
  23. * @method static Builder|Payment newModelQuery()
  24. * @method static Builder|Payment newQuery()
  25. * @method static Builder|Payment query()
  26. * @method static Builder|Payment uid()
  27. * @method static Builder|Payment whereAmount($value)
  28. * @method static Builder|Payment whereCreatedAt($value)
  29. * @method static Builder|Payment whereId($value)
  30. * @method static Builder|Payment whereOid($value)
  31. * @method static Builder|Payment whereQrCode($value)
  32. * @method static Builder|Payment whereStatus($value)
  33. * @method static Builder|Payment whereTradeNo($value)
  34. * @method static Builder|Payment whereUpdatedAt($value)
  35. * @method static Builder|Payment whereUrl($value)
  36. * @method static Builder|Payment whereUserId($value)
  37. * @mixin \Eloquent
  38. */
  39. class Payment extends Model {
  40. protected $table = 'payment';
  41. public function scopeUid($query) {
  42. return $query->whereUserId(Auth::id());
  43. }
  44. public function user(): BelongsTo {
  45. return $this->belongsTo(User::class, 'user_id', 'id');
  46. }
  47. public function order(): BelongsTo {
  48. return $this->belongsTo(Order::class, 'oid', 'oid');
  49. }
  50. public function getAmountAttribute($value) {
  51. return $value / 100;
  52. }
  53. public function setAmountAttribute($value) {
  54. return $this->attributes['amount'] = $value * 100;
  55. }
  56. // 订单状态
  57. public function getStatusLabelAttribute(): string {
  58. switch($this->attributes['status']){
  59. case -1:
  60. $status_label = '支付失败';
  61. break;
  62. case 1:
  63. $status_label = '支付成功';
  64. break;
  65. case 0:
  66. default:
  67. $status_label = '等待支付';
  68. }
  69. return $status_label;
  70. }
  71. }