2016-03-05 00:18:10 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
|
|
namespace App\Models;
|
2016-02-29 15:59:36 +00:00
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
Attendize.com - Event Management & Ticketing
|
|
|
|
|
*/
|
|
|
|
|
|
2016-03-05 00:18:10 +00:00
|
|
|
class Affiliate extends \Illuminate\Database\Eloquent\Model
|
|
|
|
|
{
|
|
|
|
|
protected $fillable = ['name', 'visits', 'tickets_sold', 'event_id', 'account_id', 'sales_volume'];
|
|
|
|
|
|
|
|
|
|
public function getDates()
|
|
|
|
|
{
|
|
|
|
|
return ['created_at', 'updated_at'];
|
2016-02-29 15:59:36 +00:00
|
|
|
}
|
|
|
|
|
}
|