Skip to content

Instantly share code, notes, and snippets.

View alva-v's full-sized avatar

Alva Vially alva-v

View GitHub Profile
@alva-v
alva-v / hash-laravel-pwd.php
Last active October 9, 2023 10:05
Generating a Laravel hashed password
<?php
Illuminate\Support\Facades\Hash::make($passwordString)
@alva-v
alva-v / slug-regex.txt
Last active September 19, 2023 11:48
Slug Regex: lowercase latin characters and hyphens. Can't start or end with hyphen.
/^[a-z\d]+(?:-[a-z\d]+)*$/