Ejemplo n.º 1
0
 /**
  * @author EB
  * @param Installation $installation
  * @return \App\Basket\Template
  */
 public static function fetchDefaultTemplateForInstallation(Installation $installation)
 {
     try {
         return $installation->templates()->firstOrFail();
     } catch (ModelNotFoundException $e) {
         return Template::first();
     }
 }