Attendize/app/Models/Currency.php

26 lines
405 B
PHP
Raw Normal View History

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
* Description of Currency.
2016-02-29 15:59:36 +00:00
*
* @author Dave
*/
2016-03-05 00:18:10 +00:00
class Currency extends \Illuminate\Database\Eloquent\Model
{
public $timestamps = false;
protected $softDelete = false;
2016-02-29 15:59:36 +00:00
2016-03-05 00:18:10 +00:00
protected $table = 'currencies';
2016-02-29 15:59:36 +00:00
2016-03-05 00:18:10 +00:00
public function event()
{
return $this->belongsTo('\App\Models\Event');
}
2016-02-29 15:59:36 +00:00
}