---
title: "footer-08"
description: "Minimal footer: logo with a single row of links, a subscribe form, and an oversized company wordmark above the legal bar."
category: "Footer"
---
# footer-08
Minimal footer: logo with a single row of links, a subscribe form, and an oversized company wordmark above the legal bar.
## Installation
```bash
php artisan ui:add-block footer-08
```
## Dependencies
- composer: `gehrisandro/tailwind-merge-laravel`
- component: [button](https://laralcn-ui.abdulkadersafi.com/components/button.md) — the CLI installs it for you.
- component: [input](https://laralcn-ui.abdulkadersafi.com/components/input.md) — the CLI installs it for you.
## Source
`resources/views/components/ui/blocks/footer-08.blade.php`
```blade
{{--
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' => ...].
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.
--}}
@props([
'brand' => 'LaralCN',
'brandHref' => '#',
'wordmark' => null,
'links' => ['Link One', 'Link Two', 'Link Three', 'Link Four', 'Link Five'],
'newsletterTitle' => 'Subscribe',
'formAction' => null,
'emailPlaceholder' => 'Enter your email',
'subscribeLabel' => 'Subscribe',
'privacyHref' => '#',
'legal' => ['Privacy Policy', 'Terms of Service', 'Cookies Settings'],
'copyright' => null,
])
@php
$link = static fn($item): array => is_array($item)
? $item + ['href' => '#']
: ['label' => $item, 'href' => '#'];
@endphp
```