---
permalink: /inertia/
title: Inertia
description: Easily add flash notification messages to your Inertia application with PHPFlasher. Follow our step-by-step guide to install and use the library in your project, and start engaging and informing your users with powerful flash messages.
---
PHPFlasher offers a solid integration with Inertia.js
## Installation
To integrate PHPFlasher with Inertia.js, follow the same installation steps as for the [Laravel Installation](/laravel) package.
Additionally, include `@flasher/flasher` in your package.json by adding the following line:
```json
"@flasher/flasher": "file:vendor/php-flasher/flasher/Resources"
```
Then, run:
```shell
npm install --force
```
---
## Usage
Dispatch `notifications` from your `HandleInertiaRequests` middleware shared data.
```php
flash()->render([], 'array'),
]);
}
}
```
---
Then render your `notifications` from your `Layout.vue` file like the following:
```html
// resources/js/Shared/Layout.vue
```
All you have to do now, is to trigger you notification from anywhere in your application.
```php
success('User created.');
return Redirect::route('users');
}
}
```