mirror of
				https://github.com/invoiceninja/invoiceninja.git
				synced 2025-10-31 06:47:29 -04:00 
			
		
		
		
	
		
			
				
	
	
		
			28 lines
		
	
	
		
			458 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			28 lines
		
	
	
		
			458 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
| <?php
 | |
| 
 | |
| namespace App\Ninja\Presenters;
 | |
| 
 | |
| use Utils;
 | |
| 
 | |
| /**
 | |
|  * Class CreditPresenter.
 | |
|  */
 | |
| class CreditPresenter extends EntityPresenter
 | |
| {
 | |
|     /**
 | |
|      * @return string
 | |
|      */
 | |
|     public function client()
 | |
|     {
 | |
|         return $this->entity->client ? $this->entity->client->getDisplayName() : '';
 | |
|     }
 | |
| 
 | |
|     /**
 | |
|      * @return \DateTime|string
 | |
|      */
 | |
|     public function credit_date()
 | |
|     {
 | |
|         return Utils::fromSqlDate($this->entity->credit_date);
 | |
|     }
 | |
| }
 |