for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Furic\RedeemCodes\Models;
use Illuminate\Database\Eloquent\Model;
class RedeemCodeHistory extends Model
{
protected $fillable = ['redeem_code_id', 'ip', 'agent'];
public function redeemCode()
return $this->belongsTo('Furic\RedeemCodes\RedeemCode');
}