| Total Complexity | 14 |
| Total Lines | 50 |
| Duplicated Lines | 0 % |
| Changes | 5 | ||
| Bugs | 1 | Features | 2 |
| 1 | <?php |
||
| 8 | class Transaction extends Model |
||
| 9 | { |
||
| 10 | use HasFactory; |
||
| 11 | |||
| 12 | protected $fillable = ['order_id', 'status', 'amount', 'driver', 'ref_no', 'token']; |
||
| 13 | protected $appends = ['gateway','toman','status_label']; |
||
| 14 | |||
| 15 | public function parent() |
||
| 18 | } |
||
| 19 | |||
| 20 | public function getGatewayAttribute() |
||
| 37 | } |
||
| 38 | } |
||
| 39 | |||
| 40 | public function getTomanAttribute() |
||
| 43 | } |
||
| 44 | |||
| 45 | public function getStatusLabelAttribute() |
||
| 61 |