Total Complexity | 2 |
Total Lines | 44 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 1 |
1 | <?php |
||
8 | class InstamojoPayment extends Model |
||
9 | { |
||
10 | use SoftDeletes; |
||
11 | |||
12 | /** |
||
13 | * The table associated with the model. |
||
14 | * |
||
15 | * @var string |
||
16 | */ |
||
17 | protected $table = 'instamojo_payment'; |
||
18 | |||
19 | /** |
||
20 | * The attributes that are mass assignable. |
||
21 | * |
||
22 | * @var array |
||
23 | */ |
||
24 | protected $fillable = ['user_id','buyer_email','buyer_name','buyer_phone','currency','amount','unit_price', 'fees','longurl','payment_id', 'payment_request_id','purpose','shorturl','request_status','payment_status', 'affiliate_commission', 'instrument_type', 'billing_instrument', 'created_by']; |
||
25 | |||
26 | |||
27 | /** |
||
28 | * The "booting" method of the model. |
||
29 | * |
||
30 | * @return void |
||
31 | */ |
||
32 | public static function boot() |
||
42 | }); |
||
43 | } |
||
44 | |||
45 | /** |
||
46 | * [user description] |
||
47 | * @return [type] [description] |
||
48 | */ |
||
49 | public function user() |
||
54 |