Guides
Navigation
Feedback
Overlays
Layout
Data Display
Forms
.md

Footer

footer-06

Contact footer: address, phone and email beside two link columns, closing on an oversized company wordmark.

Open full screen →

Installation

php artisan ui:add-block footer-06

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-06 />.

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-06
    brand="Acme"
    wordmark="Acme Cloud"
    address="Level 1, 12 Sample St, Sydney NSW 2000"
    phone="1800 123 4567"
    email="hello@acme.com"
    :columns="[
        ['links' => [
            ['label' => 'Pricing', 'href' => '/pricing'],
            ['label' => 'Changelog', 'href' => '/changelog'],
        ]],
        ['links' => [
            ['label' => 'Docs', 'href' => '/docs'],
            ['label' => 'Support', 'href' => '/support'],
        ]],
    ]"
    :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,
    'addressLabel' => 'Address:',
    'address' => 'Level 1, 12 Sample St, Sydney NSW 2000',
    'contactLabel' => 'Contact:',
    'phone' => '1800 123 4567',
    'email' => 'email@example.com',
    'columns' => [
        ['links' => ['Link One', 'Link Two', 'Link Three', 'Link Four', 'Link Five']],
        ['links' => ['Link Six', 'Link Seven', 'Link Eight', 'Link Nine', 'Link Ten']],
    ],
    '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,
])