You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
willaengine/app/RollCall.php

19 lines
383 B

<?php
namespace App;
use Illuminate\Database\Eloquent\Model;
class RollCall extends Model
{
protected $fillable=[
'date','check_in_time','check_out_time','description','user_id','ip','exit_ip', 'type'
];
public function getDateFaAttribute()
{
return \Morilog\Jalali\CalendarUtils::strftime('Y/m/d', strtotime($this->attributes['date']));
}
}