mirror of
https://gitlab.com/CIEFWorldwideSdnBhd/exchange-2.0.git
synced 2026-08-19 12:33:56 +00:00
a2381e44a7
Update Company Service Class Create Documents Service Class Create File Service Class Base64 File Convert Service Class File Upload Storage Service Class
27 lines
542 B
PHP
27 lines
542 B
PHP
<?php
|
|
|
|
namespace App\Models;
|
|
|
|
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
|
|
{
|
|
//
|
|
}
|