This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.background-repeat-none { | |
background-repeat: no-repeat; | |
} | |
.background-size-cover { | |
background-size: cover; | |
} | |
.ease-linear { | |
transition-timing-function: linear |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
if (! function_exists('randomize')) { | |
/** | |
* Generates a random string used for various simple randomness. | |
* | |
* @param int $min | |
* @param int $max | |
* @param int $limit | |
* @return string |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
namespace App\Traits; | |
use Illuminate\Support\Arr; | |
trait AccessRules | |
{ | |
public static function getRules(array $only = []): array | |
{ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
namespace App\Traits\Models; | |
trait GeneratesUuid | |
{ | |
/** | |
* Any model that is in the creating / bootable state will have a UUID 4 created for their primary key. | |
* | |
*/ |
NewerOlder