osb/app/Models/Payment.php

16 lines
271 B
PHP
Raw Normal View History

2018-05-20 12:53:14 +00:00
<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Model;
class Payment extends Model
{
protected $table = 'ab_payment';
protected $dates = ['date_payment'];
public function getPaymentDateAttribute()
{
return $this->date_payment->format('Y-m-d');
}
}