Guides
Navigation
Feedback
Overlays
Layout
Data Display
Forms
.md

Footer

footer-07

Newsletter footer with an oversized company wordmark: signup form, two link columns and a social list above the brand statement.

Open full screen →

Installation

php artisan ui:add-block footer-07

A single command installs the block's Blade file and every component it depends on. Render it in your own layout as <x-ui.blocks.footer-07 />.

Components it includes

Usage

Every piece of content is a prop, so you can drive this footer from a CMS. A link is either a plain string or ['label' => ..., 'href' => ...]. A social is ['label' =>, 'href' =>, 'icon' =>] where icon is a key of the $icons map below ('facebook', 'instagram', 'x', 'linkedin', 'youtube'), or pass 'svg' => '<svg ...>' to use a mark of your own. The wordmark defaults to `brand`; set it separately for a longer legal name, and retune the clamp below if the word no longer fills the container.

<x-ui.blocks.footer-07
    brand="Acme"
    wordmark="Acme Cloud"
    newsletter-text="One email a month, every new release."
    :form-action="route('newsletter.store')"
    :columns="[
        ['title' => 'Product', 'links' => [
            ['label' => 'Pricing', 'href' => '/pricing'],
            ['label' => 'Changelog', 'href' => '/changelog'],
        ]],
        ['title' => 'Company', 'links' => ['About', 'Careers']],
    ]"
    socials-title="Find us"
    :socials="[
        ['label' => 'X', 'href' => 'https://x.com/acme', 'icon' => 'x'],
        ['label' => 'LinkedIn', 'href' => 'https://linkedin.com/company/acme', 'icon' => 'linkedin'],
    ]"
    :legal="[
        ['label' => 'Privacy', 'href' => '/privacy'],
        ['label' => 'Terms', 'href' => '/terms'],
    ]"
    copyright="© 2026 Acme Pty Ltd"
/>

Props

Every prop with its default. Pass any of them as attributes, using : to bind a PHP value.

@props([
    'brand' => 'LaralCN',
    'brandHref' => '#',
    'wordmark' => null,
    'newsletterText' => 'Join our newsletter to stay up to date on features and releases.',
    'formAction' => null,
    'emailPlaceholder' => 'Enter your email',
    'subscribeLabel' => 'Subscribe',
    'privacyHref' => '#',
    'columns' => [
        ['title' => 'Column One', 'links' => ['Link One', 'Link Two', 'Link Three', 'Link Four', 'Link Five']],
        ['title' => 'Column Two', 'links' => ['Link Six', 'Link Seven', 'Link Eight', 'Link Nine', 'Link Ten']],
    ],
    'socialsTitle' => 'Follow Us',
    'socials' => [
        ['label' => 'Facebook', 'icon' => 'facebook'],
        ['label' => 'Instagram', 'icon' => 'instagram'],
        ['label' => 'X', 'icon' => 'x'],
        ['label' => 'LinkedIn', 'icon' => 'linkedin'],
        ['label' => 'Youtube', 'icon' => 'youtube'],
    ],
    'legal' => ['Privacy Policy', 'Terms of Service', 'Cookies Settings'],
    'copyright' => null,
])