Skip to content

Instantly share code, notes, and snippets.

@robertdrakedennis
Last active August 1, 2021 15:48
Show Gist options
  • Save robertdrakedennis/063e6c6032d260427a4e6587c1600300 to your computer and use it in GitHub Desktop.
Save robertdrakedennis/063e6c6032d260427a4e6587c1600300 to your computer and use it in GitHub Desktop.
AccessesRules Trait, used for form requests
<?php
namespace App\Traits;
use Illuminate\Support\Arr;
trait AccessRules
{
public static function getRules(array $only = []): array
{
return empty($only) ? static::$rules : Arr::only(static::$rules, $only);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment