changes
This commit is contained in:
@@ -0,0 +1,15 @@
|
||||
<?php
|
||||
|
||||
namespace App\Containers\Dashboard\Actions\CustomForms;
|
||||
|
||||
use App\Containers\Widget\Models\CustomForm;
|
||||
|
||||
class UpdateCustomFormAction
|
||||
{
|
||||
public function run(CustomForm $form, array $data): CustomForm
|
||||
{
|
||||
$form->update($data);
|
||||
|
||||
return $form;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user