Google > My Account > Security > Enable 2-Step Verification
Make a new App Password: Google > My Account > Security > App passwords
MAIL_MAILER=smtp
MAIL_HOST=smtp.gmail.com
MAIL_PORT=465
[email protected]
| <VirtualHost *> | |
| ServerName http://www.secondary.dev | |
| ServerAlias www.secondary.dev | |
| DocumentRoot "C:/xampp/htdocs/www.primary.dev" | |
| </VirtualHost> |
| @if ($paginator->hasPages()) | |
| <nav role="navigation" aria-label="Pagination Navigation" class="flex items-center justify-between"> | |
| <div class="flex justify-between flex-1 sm:hidden"> | |
| @if ($paginator->onFirstPage()) | |
| <span class="relative inline-flex items-center px-4 py-2 text-sm font-medium text-gray-500 bg-white border border-gray-300 cursor-default leading-5 rounded-md"> | |
| {!! __('pagination.previous') !!} | |
| </span> | |
| @else | |
| <button wire:click="previousPage" class="relative inline-flex items-center px-4 py-2 text-sm font-medium text-gray-700 bg-white border border-gray-300 leading-5 rounded-md hover:text-gray-500 focus:outline-none focus:shadow-outline-blue focus:border-blue-300 active:bg-gray-100 active:text-gray-700 transition ease-in-out duration-150"> | |
| {!! __('pagination.previous') !!} |
| module.exports = { | |
| theme: { | |
| extend: { | |
| colors: { | |
| brand: { | |
| 'blue-900': '#01295f', | |
| }, | |
| }, | |
| fontFamily: { | |
| 'sans': [ |
Google > My Account > Security > Enable 2-Step Verification
Make a new App Password: Google > My Account > Security > App passwords
MAIL_MAILER=smtp
MAIL_HOST=smtp.gmail.com
MAIL_PORT=465
[email protected]
| <?php | |
| $fractionStrings = [ | |
| '½' => 'half', | |
| '⅓' => 'third', | |
| '⅔' => 'two-thirds', | |
| '¼' => 'quarter', | |
| '¾' => 'three-quarters', | |
| '⅕' => 'fifth', | |
| '⅖' => 'two-fifths', |
<div class="fixed top-0 left-0 z-50 px-2 py-px text-sm leading-none text-white bg-black rounded-br">
<span class="inline xxs:hidden xs:hidden sm:hidden md:hidden lg:hidden xl:hidden 2xl:hidden">none</span>
<span class="hidden xxs:inline xs:hidden sm:hidden md:hidden lg:hidden xl:hidden 2xl:hidden">xxs</span>
<span class="hidden xxs:hidden xs:inline sm:hidden md:hidden lg:hidden xl:hidden 2xl:hidden">xs</span>
<span class="hidden xxs:hidden xs:hidden sm:inline md:hidden lg:hidden xl:hidden 2xl:hidden">sm</span>
<span class="hidden xxs:hidden xs:hidden sm:hidden md:inline lg:hidden xl:hidden 2xl:hidden">md</span>
<span class="hidden xxs:hidden xs:hidden sm:hidden md:hidden lg:inline xl:hidden 2xl:hidden">lg</span>
<span class="hidden xxs:hidden xs:hidden sm:hidden md:hidden lg:hidden xl:inline 2xl:hidden">xl</span>
<span class="hidden xxs:hidden xs:hidden sm:hidden md:hidden lg:hidden xl:hidden 2xl:inline">2xl</span>| <?php | |
| namespace App\Http\Livewire; | |
| use Illuminate\Support\Facades\URL; | |
| use Livewire\Component; | |
| use Statamic\Events\SubmissionCreated; | |
| use Statamic\Facades\Form; | |
| use Statamic\Facades\Site; | |
| use Statamic\Forms\SendEmails; |
Using code from here: https://statamic.dev/knowledge-base/recursive-nav-examples#footer-nav-example
<div class="flex">
{{ nav }}
{{ if depth == 1 }}
<div class="mx-10">
<h3 class="mb-2">{{ title }}{{ partial:brand-svg }}</h3>{{# this partial stops the elseif depth 2 stuff rendering #}}
{{ if children }}
{{ *recursive children* }}| {{ if config.app.env !== 'production' }} | |
| <div class="fixed top-0 left-0 z-50 px-2 py-px text-sm leading-none text-white bg-black rounded-br"> | |
| <span class="inline xxs:hidden xs:hidden sm:hidden md:hidden lg:hidden xl:hidden">none</span> | |
| <span class="hidden xxs:inline xs:hidden sm:hidden md:hidden lg:hidden xl:hidden">xxs</span> | |
| <span class="hidden xxs:hidden xs:inline sm:hidden md:hidden lg:hidden xl:hidden">xs</span> | |
| <span class="hidden xxs:hidden xs:hidden sm:inline md:hidden lg:hidden xl:hidden">sm</span> | |
| <span class="hidden xxs:hidden xs:hidden sm:hidden md:inline lg:hidden xl:hidden">md</span> | |
| <span class="hidden xxs:hidden xs:hidden sm:hidden md:hidden lg:inline xl:hidden">lg</span> | |
| <span class="hidden xxs:hidden xs:hidden sm:hidden md:hidden lg:hidden xl:inline">xl</span> | |
| </div> |