1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-09-21 08:51:34 +02:00
invoiceninja/app/Http/Controllers/ClientPortal/TempRouteController.php

34 lines
769 B
PHP
Raw Normal View History

2020-11-27 10:14:01 +01:00
<?php
/**
* Invoice Ninja (https://invoiceninja.com).
*
* @link https://github.com/invoiceninja/invoiceninja source repository
*
* @copyright Copyright (c) 2021. Invoice Ninja LLC (https://invoiceninja.com)
2020-11-27 10:14:01 +01:00
*
* @license https://opensource.org/licenses/AAL
*/
namespace App\Http\Controllers\ClientPortal;
use App\Http\Controllers\Controller;
use Auth;
use Illuminate\Support\Facades\Cache;
class TempRouteController extends Controller
{
/**
* Logs a user into the client portal using their contact_key
* @param string $contact_key The contact key
* @return Auth|Redirect
*/
public function index(string $hash)
{
2020-11-27 10:21:18 +01:00
$data = [];
2020-11-27 12:08:42 +01:00
$data['html'] = Cache::get($hash);
2020-11-27 10:21:18 +01:00
return view('pdf.html', $data);
2020-11-27 10:14:01 +01:00
}
}