* wip * wip * wip * wip * wip * wip * wip * #5 - bump dependencies * #43 - wip * #43 - add composer script * #43 - fix * #43 - fix * #43 - wip * #43 - ecs fix * #43 - cr fix * #43 - cr fix * #43 - fix Co-authored-by: EwelinaLasowy <ewelina.lasowy@blumilk.pl>
		
			
				
	
	
		
			100 lines
		
	
	
		
			2.5 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			100 lines
		
	
	
		
			2.5 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
| <?php
 | |
| 
 | |
| declare(strict_types=1);
 | |
| 
 | |
| namespace Toby\Infrastructure\Http\Controllers;
 | |
| 
 | |
| use Illuminate\Auth\Access\AuthorizationException;
 | |
| use Illuminate\Http\RedirectResponse;
 | |
| use Illuminate\Http\Request;
 | |
| use Inertia\Response;
 | |
| use Toby\Eloquent\Helpers\YearPeriodRetriever;
 | |
| use Toby\Eloquent\Models\Holiday;
 | |
| use Toby\Infrastructure\Http\Requests\HolidayRequest;
 | |
| use Toby\Infrastructure\Http\Resources\HolidayFormDataResource;
 | |
| use Toby\Infrastructure\Http\Resources\HolidayResource;
 | |
| 
 | |
| class HolidayController extends Controller
 | |
| {
 | |
|     public function index(Request $request, YearPeriodRetriever $yearPeriodRetriever): Response
 | |
|     {
 | |
|         $yearPeriod = $yearPeriodRetriever->selected();
 | |
| 
 | |
|         $holidays = $yearPeriod
 | |
|             ->holidays()
 | |
|             ->orderBy("date")
 | |
|             ->get();
 | |
| 
 | |
|         return inertia("Holidays/Index", [
 | |
|             "holidays" => HolidayResource::collection($holidays),
 | |
|             "can" => [
 | |
|                 "manageHolidays" => $request->user()->can("manageHolidays"),
 | |
|             ],
 | |
|         ]);
 | |
|     }
 | |
| 
 | |
|     /**
 | |
|      * @throws AuthorizationException
 | |
|      */
 | |
|     public function create(): Response
 | |
|     {
 | |
|         $this->authorize("manageHolidays");
 | |
| 
 | |
|         return inertia("Holidays/Create");
 | |
|     }
 | |
| 
 | |
|     /**
 | |
|      * @throws AuthorizationException
 | |
|      */
 | |
|     public function store(HolidayRequest $request): RedirectResponse
 | |
|     {
 | |
|         $this->authorize("manageHolidays");
 | |
| 
 | |
|         Holiday::query()->create($request->data());
 | |
| 
 | |
|         return redirect()
 | |
|             ->route("holidays.index")
 | |
|             ->with("success", __("Holiday has been created."));
 | |
|     }
 | |
| 
 | |
|     /**
 | |
|      * @throws AuthorizationException
 | |
|      */
 | |
|     public function edit(Holiday $holiday): Response
 | |
|     {
 | |
|         $this->authorize("manageHolidays");
 | |
| 
 | |
|         return inertia("Holidays/Edit", [
 | |
|             "holiday" => new HolidayFormDataResource($holiday),
 | |
|         ]);
 | |
|     }
 | |
| 
 | |
|     /**
 | |
|      * @throws AuthorizationException
 | |
|      */
 | |
|     public function update(HolidayRequest $request, Holiday $holiday): RedirectResponse
 | |
|     {
 | |
|         $this->authorize("manageHolidays");
 | |
| 
 | |
|         $holiday->update($request->data());
 | |
| 
 | |
|         return redirect()
 | |
|             ->route("holidays.index")
 | |
|             ->with("success", __("Holiday has been updated."));
 | |
|     }
 | |
| 
 | |
|     /**
 | |
|      * @throws AuthorizationException
 | |
|      */
 | |
|     public function destroy(Holiday $holiday): RedirectResponse
 | |
|     {
 | |
|         $this->authorize("manageHolidays");
 | |
| 
 | |
|         $holiday->delete();
 | |
| 
 | |
|         return redirect()
 | |
|             ->route("holidays.index")
 | |
|             ->with("success", __("Holiday has been deleted."));
 | |
|     }
 | |
| }
 |