mirror of
				https://github.com/pelican-dev/panel.git
				synced 2025-10-31 15:16:53 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			49 lines
		
	
	
		
			1.2 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			49 lines
		
	
	
		
			1.2 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
| <?php
 | |
| 
 | |
| namespace Pterodactyl\Http\Controllers\Admin\Nodes;
 | |
| 
 | |
| use Illuminate\Http\Request;
 | |
| use Illuminate\Contracts\View\Factory;
 | |
| use Pterodactyl\Http\Controllers\Controller;
 | |
| use Pterodactyl\Repositories\Eloquent\NodeRepository;
 | |
| 
 | |
| class NodeController extends Controller
 | |
| {
 | |
|     /**
 | |
|      * @var \Illuminate\Contracts\View\Factory
 | |
|      */
 | |
|     private $view;
 | |
| 
 | |
|     /**
 | |
|      * @var \Pterodactyl\Repositories\Eloquent\NodeRepository
 | |
|      */
 | |
|     private $repository;
 | |
| 
 | |
|     /**
 | |
|      * NodeController constructor.
 | |
|      *
 | |
|      * @param \Pterodactyl\Repositories\Eloquent\NodeRepository $repository
 | |
|      * @param \Illuminate\Contracts\View\Factory $view
 | |
|      */
 | |
|     public function __construct(NodeRepository $repository, Factory $view)
 | |
|     {
 | |
|         $this->view = $view;
 | |
|         $this->repository = $repository;
 | |
|     }
 | |
| 
 | |
|     /**
 | |
|      * Returns a listing of nodes on the system.
 | |
|      *
 | |
|      * @param \Illuminate\Http\Request $request
 | |
|      * @return \Illuminate\Contracts\View\View
 | |
|      */
 | |
|     public function index(Request $request)
 | |
|     {
 | |
|         $nodes = $this->repository
 | |
|             ->setSearchTerm($request->input('query'))
 | |
|             ->getNodeListingData();
 | |
| 
 | |
|         return $this->view->make('admin.nodes.index', compact('nodes'));
 | |
|     }
 | |
| }
 | 
