mirror of
				https://github.com/invoiceninja/invoiceninja.git
				synced 2025-10-31 10:27:33 -04:00 
			
		
		
		
	
		
			
				
	
	
		
			33 lines
		
	
	
		
			566 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			33 lines
		
	
	
		
			566 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
| <?php namespace App\Models;
 | |
| 
 | |
| use Auth;
 | |
| 
 | |
| /**
 | |
|  * Class AccountGatewaySettings
 | |
|  */
 | |
| class AccountGatewaySettings extends EntityModel
 | |
| {
 | |
|     /**
 | |
|      * @var array
 | |
|      */
 | |
|     protected $dates = ['updated_at'];
 | |
| 
 | |
|     /**
 | |
|      * @var bool
 | |
|      */
 | |
|     protected static $hasPublicId = false;
 | |
| 
 | |
|     /**
 | |
|      * @return \Illuminate\Database\Eloquent\Relations\BelongsTo
 | |
|      */
 | |
|     public function gatewayType()
 | |
|     {
 | |
|         return $this->belongsTo('App\Models\GatewayType');
 | |
|     }
 | |
| 
 | |
|     public function setCreatedAtAttribute($value)
 | |
|     {
 | |
|         // to Disable created_at
 | |
|     }
 | |
| }
 |