# Laravel 8/7 Notification Tutorial | Create Notification with Laravel 8/7 (ok)

C:\xampp\htdocs\reset\routes\web.php

```
<?php
/*
|--------------------------------------------------------------------------
| Web Routes
|--------------------------------------------------------------------------
|
| Here is where you can register web routes for your application. These
| routes are loaded by the RouteServiceProvider within a group which
| contains the "web" middleware group. Now create something great!
|
 */
use App\Http\Controllers\HomeController;
use App\Http\Controllers\ItemController;
Route::get('/', function () {
  dd('Welcome to simple user route file.');
});
Auth::routes();
Route::get('/home', [HomeController::class, 'index'])->name('home');
Route::get('send', [HomeController::class,'sendNotification']);
```

C:\xampp\htdocs\reset\app\Http\Controllers\HomeController.php

```
<?php
namespace App\Http\Controllers;
use App\Models\User;
use App\Notifications\MyFirstNotification;
use Notification;
class HomeController extends Controller {
  /**
   * Create a new controller instance.
   *
   * @return void
   */
  public function __construct() {
    $this->middleware('auth');
  }
  /**
   * Show the application dashboard.
   *
   * @return \Illuminate\Contracts\Support\Renderable
   */
  public function index() {
    return view('home');
  }
  public function sendNotification() {
    $user    = User::first();
    $details = [
      'greeting'   => 'Hi Artisan',
      'body'       => 'This is my first notification from ItSolutionStuff.com',
      'thanks'     => 'Thank you for using ItSolutionStuff.com tuto!',
      'actionText' => 'View My Site',
      'actionURL'  => url('/'),
      'order_id'   => 101,
    ];
    Notification::send($user, new MyFirstNotification($details));
    dd('done');
  }
}
```

C:\xampp\htdocs\reset\app\Notifications\MyFirstNotification.php

```
<?php
namespace App\Notifications;
use Illuminate\Bus\Queueable;
use Illuminate\Notifications\Messages\MailMessage;
use Illuminate\Notifications\Notification;
class MyFirstNotification extends Notification {
  use Queueable;
  /**
   * Create a new notification instance.
   *
   * @return void
   */
  private $details;
  public function __construct($details) {
    $this->details = $details;
  }
  /**
   * Get the notification's delivery channels.
   *
   * @param  mixed  $notifiable
   * @return array
   */
  public function via($notifiable) {
    return ['mail', 'database'];
  }
  /**
   * Get the mail representation of the notification.
   *
   * @param  mixed  $notifiable
   * @return \Illuminate\Notifications\Messages\MailMessage
   */
  public function toMail($notifiable) {
    return (new MailMessage)->greeting($this->details['greeting'])->line($this->details['body'])->action($this->details['actionText'], $this->details['actionURL'])->line($this->details['thanks']);
  }
  /**
   * Get the array representation of the notification.
   *
   * @param  mixed  $notifiable
   * @return array
   */
  public function toArray($notifiable) {
    return [
      'order_id' => $this->details['order_id'],
    ];
  }
}
```

![](/files/TYXI6UxjsCnb3XpaefVw)

![](/files/FrUk8alFOWZBTRCXXNXy)

## Laravel 8/7 Notification Tutorial | Create Notification with Laravel 8/7

By Hardik Savani November 23, 2019 Category : Laravel![](https://a.vdo.ai/core/assets/img/cross.svg)PlayUnmuteLoaded: 1.17%Fullscreen[![VDO.AI](https://a.vdo.ai/core/assets/img/logo.svg)](https://vdo.ai/?utm_medium=video\&utm_term=itsolutionstuff.com\&utm_source=vdoai_logo)Hi Guys,

In this tutorial, i will guide you how to send email notification in laravel 8/7/6. we will create laravel 8/7 notification to email address. we will send email to notify user using laravel 7/6 notification system.

Using laravel 6 notifications, you can send email, send sms, send slack message notification to user. in this example i give you very simple way to create first notification to send mail in laravel 6. we can easily create Notification by laravel artisan command. we can easily customization of notification like mail subject, mail body, main action etc. we almost require to use notification when we work on large amount of project like e-commerce. might be you need to send notification for payment receipt, order place receipt, invoice etc.

In this example we will create email notification and send it to particular user, than we saved to database. So, you need to follow few step to make basic example with notification.

![](https://www.itsolutionstuff.com/upload/laravel-6-notifications.png)

**Step 1: Install Laravel 6**

I am going to explain step by step from scratch so, we need to get fresh Laravel 6 application using bellow command, So open your terminal OR command prompt and run bellow command:

```
composer create-project --prefer-dist laravel/laravel blog
```

**Step 2: Create Database Table**

In this step, we need to create "notifications" table by using laravel 5 artisan command, so let's run bellow command:

```
php artisan notifications:table
```

```
php artisan migrate
```

Read Also: [Laravel 6 Generate PDF File Tutorial](https://www.itsolutionstuff.com/post/laravel-6-generate-pdf-file-tutorialexample.html)

**Step 3: Create Notification**

In this step, we need to create "Notification" by using laravel 5 artisan command, so let's run bellow command, we will create MyFirstNotification.

```
php artisan make:notification MyFirstNotification
```

now you can see new folder will create as "Notifications" in app folder. You need to make following changes as like bellow class.

app/Notifications/MyFirstNotification.php

```
<?php   namespace App\Notifications;   use Illuminate\Bus\Queueable;use Illuminate\Notifications\Notification;use Illuminate\Contracts\Queue\ShouldQueue;use Illuminate\Notifications\Messages\MailMessage;   class MyFirstNotification extends Notification{    use Queueable;      private $details;       /**     * Create a new notification instance.     *     * @return void     */    public function __construct($details)    {        $this->details = $details;    }       /**     * Get the notification's delivery channels.     *     * @param  mixed  $notifiable     * @return array     */    public function via($notifiable)    {        return ['mail','database'];    }       /**     * Get the mail representation of the notification.     *     * @param  mixed  $notifiable     * @return \Illuminate\Notifications\Messages\MailMessage     */    public function toMail($notifiable)    {        return (new MailMessage)                    ->greeting($this->details['greeting'])                    ->line($this->details['body'])                    ->action($this->details['actionText'], $this->details['actionURL'])                    ->line($this->details['thanks']);    }      /**     * Get the array representation of the notification.     *     * @param  mixed  $notifiable     * @return array     */    public function toDatabase($notifiable)    {        return [            'order_id' => $this->details['order_id']        ];    }}
```

**Step 4: Create Route**

In this is step we need to create routes for sending notification to one user. so open your "routes/web.php" file and add following route.

routes/web.php

```
Route::get('send', 'HomeController@sendNotification');
```

**Step 4: Create Controller**

Here,we require to create new controller HomeController that will manage generatePDF method of route. So let's put bellow code.

app/Http/Controllers/HomeController.php

```
<?php  namespace App\Http\Controllers;  use Illuminate\Http\Request;use App\User;use Notification;use App\Notifications\MyFirstNotification;  class HomeController extends Controller{    /**     * Create a new controller instance.     *     * @return void     */    public function __construct()    {        $this->middleware('auth');    }      /**     * Show the application dashboard.     *     * @return \Illuminate\Contracts\Support\Renderable     */    public function index()    {        return view('home');    }      public function sendNotification()    {        $user = User::first();          $details = [            'greeting' => 'Hi Artisan',            'body' => 'This is my first notification from ItSolutionStuff.com',            'thanks' => 'Thank you for using ItSolutionStuff.com tuto!',            'actionText' => 'View My Site',            'actionURL' => url('/'),            'order_id' => 101        ];          Notification::send($user, new MyFirstNotification($details));           dd('done');    }  }
```

Now we are ready to send first notification to user. so let's run our example so run bellow command for quick run:

```
php artisan serve
```

you can run following url:

```
http://localhost:8000/send
```

you can also send notification like this way:

```
$user->notify(new MyFirstNotification($details));
```

you can get sent notifications by following command:

Read Also: [Laravel 7/6 Socialite Login with Google Gmail Account](https://www.itsolutionstuff.com/post/laravel-6-socialite-login-with-google-gmail-accountexample.html)

```
dd($user->notifications);
```

I hope it can help you....


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://learnphp.gitbook.io/learnphp/laravel-advanced/laravel-8-7-notification-tutorial-or-create-notification-with-laravel-8-7-ok.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
