Attendize/app/Models/Currency.php

24 lines
432 B
PHP
Raw Normal View History

2016-02-29 15:59:36 +00:00
<?php namespace App\Models;
/*
Attendize.com - Event Management & Ticketing
*/
/**
* Description of Currency
*
* @author Dave
*/
class Currency extends \Illuminate\Database\Eloquent\Model {
public $timestamps = false;
protected $softDelete = false;
protected $table = 'currencies';
public function event() {
return $this->belongsTo('\App\Models\Event');
}
}