1 | <?php |
||
29 | class Payment extends Model |
||
30 | { |
||
31 | protected $guarded = [ |
||
32 | 'status', |
||
33 | ]; |
||
34 | |||
35 | protected $dates = [ |
||
36 | 'payment_date', |
||
37 | ]; |
||
38 | |||
39 | protected $hidden = [ |
||
40 | 'card_number', |
||
41 | ]; |
||
42 | |||
43 | protected $casts = [ |
||
44 | 'amount' => 'int', |
||
45 | 'status' => 'int', |
||
46 | 'checks' => 'int', |
||
47 | ]; |
||
48 | |||
49 | public function __construct(array $attributes = []) |
||
55 | |||
56 | public function getSuccessfulAttribute(): bool |
||
60 | |||
61 | public function getFormattedAmountAttribute() |
||
65 | } |
||
66 |