2020-11-27 10:14:01 +01:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* Invoice Ninja (https://invoiceninja.com).
|
|
|
|
*
|
|
|
|
* @link https://github.com/invoiceninja/invoiceninja source repository
|
|
|
|
*
|
2021-01-03 22:54:54 +01:00
|
|
|
* @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
|
|
|
}
|
|
|
|
}
|