2021-05-12 16:39:29 +02:00
|
|
|
<?php
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Invoice Ninja (https://invoiceninja.com).
|
|
|
|
*
|
|
|
|
* @link https://github.com/invoiceninja/invoiceninja source repository
|
|
|
|
*
|
2023-01-28 23:21:40 +01:00
|
|
|
* @copyright Copyright (c) 2023. Invoice Ninja LLC (https://invoiceninja.com)
|
2021-05-12 16:39:29 +02:00
|
|
|
*
|
2021-06-16 08:58:16 +02:00
|
|
|
* @license https://www.elastic.co/licensing/elastic-license
|
2021-05-12 16:39:29 +02:00
|
|
|
*/
|
|
|
|
|
|
|
|
namespace App\Http\Controllers\ClientPortal;
|
|
|
|
|
|
|
|
use App\Http\Controllers\Controller;
|
|
|
|
use App\Http\Requests\ClientPortal\Tasks\ShowTasksRequest;
|
|
|
|
|
|
|
|
class TaskController extends Controller
|
|
|
|
{
|
|
|
|
/**
|
|
|
|
* Show the tasks in the client portal.
|
|
|
|
*
|
|
|
|
* @param ShowTasksRequest $request
|
|
|
|
* @return \Illuminate\Contracts\View\Factory|\Illuminate\View\View
|
|
|
|
*/
|
|
|
|
public function index(ShowTasksRequest $request)
|
|
|
|
{
|
2021-05-18 11:08:26 +02:00
|
|
|
\Carbon\Carbon::setLocale(
|
2022-02-16 03:24:10 +01:00
|
|
|
auth()->guard('contact')->user()->preferredLocale()
|
2021-05-18 11:08:26 +02:00
|
|
|
);
|
|
|
|
|
2021-05-12 16:39:29 +02:00
|
|
|
return render('tasks.index');
|
|
|
|
}
|
|
|
|
}
|