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

$inputs = [
    'name' => 'Jane Doe',
    'email' => '[email protected]',
    'password' => 'securepassword',
    'ssn' => '123-45-6789',
];

$action = new CreateOrUpdateUser($inputs);
$action->setProperty('hashFields', ['password']);
$action->setProperty('encryptFields', ['ssn']);
$record = $action->handle();

// 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();
  

  Route::post('users', CreateOrUpdateUser::class);
  

  CreateOrUpdateUser::dispatch(['name' => 'Jane', 'email' => '[email protected]']);
  

  Event::listen(UserRegistered::class, CreateOrUpdateUser::class);
  
bash
php artisan make:action User\\CreateOrUpdateUser --model=User