PHP code example of cleaniquecoders / laravel-action
1. Go to this page and download the library: Download cleaniquecoders/laravel-action library. Choose the download type require.
2. Extract the ZIP file and open the index.php.
3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
cleaniquecoders / laravel-action example snippets
namespace App\Actions\User;
use App\Models\User;
use CleaniqueCoders\LaravelAction\ResourceAction;
class CreateOrUpdateUser extends ResourceAction
{
public string $model = User::class;
public function rules(): array
{
return [
'name' => '
$action = new CreateOrUpdateUser(['name' => 'John Doe', 'email' => '[email protected]', 'password' => 'secretpassword']);
$action->setProperty('hashFields', ['password']); // Hash the password
$action->setProperty('encryptFields', ['ssn']); // Encrypt SSN
$action->setProperty('constrainedBy', ['email' => '[email protected]']); // Use email as a unique constraint
// Assume there's an existing user with this email
$existingUser = User::create([
'name' => 'Old Name',
'email' => '[email protected]',
'password' => Hash::make('oldpassword'),
]);
// Define the inputs to update the existing user
$inputs = [
'name' => 'John Doe Updated',
'email' => '[email protected]', // Same email
'password' => 'newpassword',
];
$action = new CreateOrUpdateUser($inputs);
$action->setProperty('constrainedBy', ['id' => $existingUser->id]); // Update by user ID
$record = $action->handle();
// The existing user record with the specified ID will be updated.
$user = (new CreateOrUpdateUser(['name' => 'Jane', 'email' => '[email protected]']))->handle();