52 lines
		
	
	
		
			1.0 KiB
		
	
	
	
		
			PHP
		
	
	
	
			
		
		
	
	
			52 lines
		
	
	
		
			1.0 KiB
		
	
	
	
		
			PHP
		
	
	
	
| <?php
 | |
| 
 | |
| namespace App\Form\Actions;
 | |
| 
 | |
| use App\Form\Models\Formtemplate;
 | |
| use App\Lib\Events\Succeeded;
 | |
| use Illuminate\Http\JsonResponse;
 | |
| use Lorisleiva\Actions\ActionRequest;
 | |
| use Lorisleiva\Actions\Concerns\AsAction;
 | |
| 
 | |
| class FormtemplateStoreAction
 | |
| {
 | |
|     use AsAction;
 | |
|     use HasValidation;
 | |
| 
 | |
|     /**
 | |
|      * @return array<string, mixed>
 | |
|      */
 | |
|     public function rules(): array
 | |
|     {
 | |
|         return [
 | |
|             ...$this->globalRules(),
 | |
|         ];
 | |
|     }
 | |
| 
 | |
|     /**
 | |
|      * @return array<string, mixed>
 | |
|      */
 | |
|     public function getValidationAttributes(): array
 | |
|     {
 | |
|         return [
 | |
|             ...$this->globalValidationAttributes(),
 | |
|         ];
 | |
|     }
 | |
| 
 | |
|     /**
 | |
|      * @param array<string, mixed> $attributes
 | |
|      */
 | |
|     public function handle(array $attributes): Formtemplate
 | |
|     {
 | |
|         return Formtemplate::create($attributes);
 | |
|     }
 | |
| 
 | |
|     public function asController(ActionRequest $request): JsonResponse
 | |
|     {
 | |
|         $this->handle($request->validated());
 | |
| 
 | |
|         Succeeded::message('Vorlage gespeichert.')->dispatch();
 | |
|         return response()->json([]);
 | |
|     }
 | |
| }
 |