for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Magister\Models\Attendance;
use Config;
use Magister\Services\Database\Elegant\Model;
use Magister\Services\Contracts\Translation\ShouldBeTranslatable;
/**
* Class Attendance.
*/
class Attendance extends Model implements ShouldBeTranslatable
{
* The attributes that should be mutated to dates.
*
* @var array
protected $dates = ['Start', 'Eind', 'Afspraak.Start', 'Afspraak.Einde'];
* Get the url associated with the model.
* @return string
public function getUrl()
return Config::get('url.attendance');
}