Laravel Tutorials

Quick Tip: Laravel Jetstream Banners

Published
Quick Tip: Laravel Jetstream Banners image

If you're using Laravel Jetstream with Livewire or Intertia.js, the scaffolding includes a banner notification component in the app layout that you can utilize from your own views/Livewire/Inertia.js components. Notifications can be dispatched using Laravel's session.

<?php
 
// ...
 
class ExampleComponent extends Component
{
public function submit()
{
// Do some stuff...
 
session()->flash('flash.banner', 'Yay for free components!');
session()->flash('flash.bannerStyle', 'success');
 
return $this->redirect('/');
}
}

The banners support 'success' and 'danger' styles out of the box. If you'd like to customize the look of the component, run php artisan vendor:publish --tag=jetstream-views to publish the Jetstream views. Then, edit the banner.blade.php file if you're using Livewire:

resources/views/vendor/jetstream/components/banner.blade.php

or the resources/js/Jetstream/Banner.vue file if you're using Inertia.js!

Jason Beggs photo

TALL stack (Tailwind CSS, Alpine.js, Laravel, and Livewire) consultant and owner of designtotailwind.com.

Sponsored

acquaintsoft logo
Acquaint Softtech

Hire Laravel developers with AI expertise at $20/hr. Get started in 48 hours.

Visit Acquaint Softtech

The latest

View all →
Laravel Auditor Audits Your App With Your Own AI Agent image

Laravel Auditor Audits Your App With Your Own AI Agent

Read article
A simple form builder that stays out of your way image

A simple form builder that stays out of your way

Read article
Laravel AI: Trace Agent Runs With Lifecycle Events image

Laravel AI: Trace Agent Runs With Lifecycle Events

Read article
Laravel AI: Get Raw HTTP Responses and Rate Limits image

Laravel AI: Get Raw HTTP Responses and Rate Limits

Read article
Agent Run Observability in Laravel AI SDK 0.11 image

Agent Run Observability in Laravel AI SDK 0.11

Read article
Debounced Queued Event Listeners in Laravel image

Debounced Queued Event Listeners in Laravel

Read article