mirror of
				https://github.com/invoiceninja/invoiceninja.git
				synced 2025-10-25 23:02:52 -04:00 
			
		
		
		
	
		
			
				
	
	
		
			32 lines
		
	
	
		
			765 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			32 lines
		
	
	
		
			765 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
| <?php
 | |
| /**
 | |
|  * Invoice Ninja (https://invoiceninja.com).
 | |
|  *
 | |
|  * @link https://github.com/invoiceninja/invoiceninja source repository
 | |
|  *
 | |
|  * @copyright Copyright (c) 2024. Invoice Ninja LLC (https://invoiceninja.com)
 | |
|  *
 | |
|  * @license https://www.elastic.co/licensing/elastic-license
 | |
|  */
 | |
| 
 | |
| namespace App\Http\Controllers\ClientPortal;
 | |
| 
 | |
| use App\Http\Controllers\Controller;
 | |
| use Illuminate\Support\Facades\Cache;
 | |
| 
 | |
| class TempRouteController extends Controller
 | |
| {
 | |
|     /**
 | |
|      * Logs a user into the client portal using their contact_key
 | |
|      * @param  string $hash  The hash
 | |
|      * @return \Illuminate\View\View
 | |
|      */
 | |
|     public function index(string $hash)
 | |
|     {
 | |
|         $data = [];
 | |
|         $data['html'] = Cache::get($hash);
 | |
| 
 | |
|         return view('pdf.html', $data);
 | |
|     }
 | |
| }
 |