// SYSTEM PANEL //
[ROOT]
/
mnt
/
pleskStorage
/
vhosts
/
kodsolutions.net
/
subdomains
/
syaaraa.kodsolutions.net
/
app
/
Models
/
Finance
[ PARENT ]
EDIT :: ContactTime.php
<?php namespace App\Models\Finance; use Illuminate\Database\Eloquent\Factories\HasFactory; use App\Models\Model; class ContactTime extends Model { use HasFactory; protected $fillable = [ 'from', 'to', 'position', 'active', ]; public function getTitleAttribute() { // setlocale(LC_ALL, 'ar'); return date('H:i a', strtotime($this->from)) . ' to ' . date('H:i a', strtotime($this->to)); } }
SAVE
CANCEL