1. Go to this page and download the library: Download artesaos/shield 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/ */
artesaos / shield example snippets
namespace App\Domains\Users\Rules;
use Artesaos\Shield\Rules
class UserRules extends Rules
{
public function defaultRules()
{
return [
'name' => '
return $this->returnRules([
'email' => '
// some other use statements here
use Artesaos\Shield\HasRules;
use App\Domains\Users\Rules\UserRules;
class User extends Model
{
// using the rules trait
use HasRules;
// setting the rules class
protected static $rulesFrom = UserRules::class
// some model stuff here
}
// inside a form request
User::rules()->byRequestType($this->getMethod());
// wherever you have a request instance
User::rules()->byRequestType($request->getMethod());
Loading please wait ...
Before you can download the PHP files, the dependencies should be resolved. This can take some minutes. Please be patient.