laravel-coinpayments icon indicating copy to clipboard operation
laravel-coinpayments copied to clipboard

Models\Ipn.php deprecated fields on $fillable.

Open Larzz opened this issue 6 years ago • 2 comments

$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',
    ];

    ......
}

Larzz avatar Oct 28 '18 07:10 Larzz

ahh ok thanks

kevupton avatar Nov 27 '18 03:11 kevupton

is this still an issue?

kevupton avatar May 25 '21 03:05 kevupton