Guest User

Untitled

a guest
May 21st, 2018
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.38 KB | None | 0 0
  1. // sablona
  2. <tr>
  3.     <td>Datum převzetí do opravy</td>
  4.     <td>{$claim->getFirstState()->getDate()->getFormated()}</td>
  5. </tr>
  6.  
  7. // funkce v modelu Claim
  8. // funkce getStates vraci pole objektu \Claim\HistoryState
  9. public function getFirstState()
  10. {
  11.     if($this->firstState == null){
  12.         $states = $this->getStates();
  13.         $this->firstState = array_shift($states);
  14.     }
  15.     return $this->firstState;
  16. }
Add Comment
Please, Sign In to add comment