Example #1
0
 function init_search_place()
 {
     // ------------------------------------------------------------------------------------------------------------
     // GET PLACE
     // ------------------------------------------------------------------------------------------------------------
     $this->place_list = Cache::remember('all_place_list', 60, function () {
         return Place::published()->orderBy('long_name')->get();
     });
 }