
* - directory refactor * - readme.md update * Update readme.md Co-authored-by: Adrian Hopek <adrian.hopek@blumilk.pl> * Update readme.md Co-authored-by: Ewelina Lasowy <56546832+EwelinaLasowy@users.noreply.github.com> * Update readme.md Co-authored-by: Ewelina Lasowy <56546832+EwelinaLasowy@users.noreply.github.com> * Update readme.md Co-authored-by: Ewelina Lasowy <56546832+EwelinaLasowy@users.noreply.github.com> * Update readme.md Co-authored-by: Adrian Hopek <adrian.hopek@blumilk.pl> Co-authored-by: Ewelina Lasowy <56546832+EwelinaLasowy@users.noreply.github.com>
41 lines
1.0 KiB
PHP
41 lines
1.0 KiB
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace Toby\Infrastructure\Http\Controllers;
|
|
|
|
use Illuminate\Http\RedirectResponse;
|
|
use Inertia\Response;
|
|
use Toby\Eloquent\Models\VacationLimit;
|
|
use Toby\Infrastructure\Http\Requests\VacationLimitRequest;
|
|
use Toby\Infrastructure\Http\Resources\VacationLimitResource;
|
|
|
|
class VacationLimitController extends Controller
|
|
{
|
|
public function edit(): Response
|
|
{
|
|
$limits = VacationLimit::query()
|
|
->with("user")
|
|
->orderByUserField("last_name")
|
|
->orderByUserField("first_name")
|
|
->get();
|
|
|
|
return inertia("VacationLimits", [
|
|
"limits" => VacationLimitResource::collection($limits),
|
|
]);
|
|
}
|
|
|
|
public function update(VacationLimitRequest $request): RedirectResponse
|
|
{
|
|
$data = $request->data();
|
|
|
|
foreach ($request->vacationLimits() as $limit) {
|
|
$limit->update($data[$limit->id]);
|
|
}
|
|
|
|
return redirect()
|
|
->back()
|
|
->with("success", __("Vacation limits have been updated"));
|
|
}
|
|
}
|