1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-09-20 08:21:34 +02:00
invoiceninja/app/Models/DateFormat.php
2016-05-22 13:10:58 +03:00

16 lines
256 B
PHP

<?php namespace App\Models;
use Eloquent;
class DateFormat extends Eloquent
{
public $timestamps = false;
public function __toString()
{
$date = mktime(0, 0, 0, 12, 31, date('Y'));
return date($this->format, $date);
}
}