laravel-coinpayments
laravel-coinpayments copied to clipboard
Models\Ipn.php deprecated fields on $fillable.
$fillable is missing the 'email' field and 'buyer_name' should be 'first_name','last_name'. Also dont forget to update the migration.
class Ipn extends Model
{
public $fillable = [
'ipn_version', 'ipn_id', 'ipn_mode', 'merchant', 'ipn_type', 'txn_id', 'status', 'ref_id',
'status_text', 'currency1', 'currency2', 'amount1', 'amount2', 'fee', 'buyer_name',
'item_name', 'item_number', 'invoice', 'custom', 'send_tx', 'received_amount', 'received_confirms',
'address', 'amount', 'amounti', 'currency', 'feei', 'dest_tag', 'confirms',
];
......
}
ahh ok thanks
is this still an issue?