mirror of
https://gitlab.com/CIEFWorldwideSdnBhd/exchange-2.0.git
synced 2026-08-19 04:23:55 +00:00
2bf5de8f3e
point constant
27 lines
535 B
PHP
27 lines
535 B
PHP
<?php
|
|
|
|
namespace App;
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
use Illuminate\Database\Eloquent\SoftDeletes;
|
|
|
|
/**
|
|
* Class Document
|
|
* @package App\Models
|
|
* @version August 4, 2020, 4:36 am
|
|
*
|
|
* @property int owner_id
|
|
* @property int owner_type
|
|
* @property int document_type
|
|
* @property string reference
|
|
* @property int status
|
|
* @property \App\Models\User approved_by
|
|
* @property timestamp issued_date
|
|
* @property timestamp expired_date
|
|
* @property timestamp approved_date
|
|
*/
|
|
class Document extends AbstractModel
|
|
{
|
|
//
|
|
}
|