Ejemplo n.º 1
0
 public static function getLogo()
 {
     $getLogoQuery = Settings::where('item', '=', 'maintenance_settings')->get();
     foreach ($getLogoQuery as $value) {
         if (Settings::find($value->id)->logo) {
             return Settings::find($value->id)->logo->getPath();
         }
     }
 }