| title |
|---|
About Us |
If you have a keen eye, you will see that a link to this page has been added to the navigation menu!
| <script src="https://cdn.tailwindcss.com"></script> | |
| <script> | |
| tailwind.config = { | |
| darkMode: 'class', | |
| } | |
| </script> |
| <?php | |
| namespace App\Models; | |
| use Illuminate\Database\Eloquent\Model; | |
| class Log extends Model | |
| { | |
| /** | |
| * Indicates if the model should be timestamped. |
| <article> | |
| <header> | |
| <h1>Semantic HTML exists. Semantic HTML is great. Use Semantic HTML.</h1> | |
| by <a href="https://twitter.com/StressedDev" rel="author">@StressedDev</a> | |
| at <time datetime="2022-03-13 21:44:44 UTC">Sunday, 13 March 2022</time> | |
| </header> | |
| <main> | |
| <h2>Content heading</h2> | |
| <p> | |
| With some text paragraphs. #codingtip of the day. |
| pre { | |
| border-radius: 0.25rem; | |
| margin-top: 1rem; | |
| margin-bottom: 1rem; | |
| overflow-x: auto; | |
| code.torchlight { | |
| display: block; | |
| min-width: -webkit-max-content; | |
| min-width: -moz-max-content; |
| @if($errors->any()) | |
| <div class="alert alert-danger"> | |
| <ul class="mb-0"> | |
| @foreach($errors->all() as $error) | |
| <li>{{ $error }}</li> | |
| @endforeach | |
| </ul> | |
| </div> | |
| @endif |
| cd hyde | |
| git config user.name github-actions | |
| git config user.email github-actions@github.com | |
| git remote add upstream https://${{ secrets.PAT }}@github.com/hydephp/hyde.git | |
| if ! git diff-index --quiet HEAD --; then | |
| git add . | |
| git commit -m "$COMMIT_MESSAGE https://github.com/hydephp/develop/commit/${{ github.sha }}" | |
| git push upstream develop | |
| else | |
| echo "No changes to this package. Exiting gracefully." |
| <?php | |
| declare(strict_types=1); | |
| namespace Hyde\Support\Contracts; | |
| /** | |
| * @internal Interface for the Illuminate Filesystem class, but with static methods and strong types inferred from the PHPDocs. | |
| * | |
| * @see \Illuminate\Filesystem\Filesystem |
| <?php | |
| declare(strict_types=1); | |
| final class Types | |
| { | |
| protected static bool $strict = false; | |
| public static function string(mixed $input): string | |
| { |