PHP code example of nikidze / laravel-adr-generator

1. Go to this page and download the library: Download nikidze/laravel-adr-generator 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/ */

    

nikidze / laravel-adr-generator example snippets




namespace App\Actions\Auth;

use App\Responses\Auth\LoginResponse;
use App\Requests\Auth\LoginRequest;

class LoginAction {

    public function __construct(
        private LoginResponse $response
    ) {}

    public function __invoke(LoginRequest $request)
    {
    }
}



namespace App\Requests\Auth;

use Illuminate\Foundation\Http\FormRequest;

class LoginRequest extends FormRequest
{
    /**
     * Determine if the user is authorized to make this request.
     *
     * @return bool
     */
    public function authorize()
    {
        return true;
    }

    /**
     * Get the validation rules that apply to the request.
     *
     * @return array
     */
    public function rules()
    {
        return [

        ];
    }
}





namespace App\Responses\Auth;

class LoginResponse {

    public function respond()
    {

    }
}
bash
 php artisan make:adr Auth/Login