source: app/Helpers/Alert.php@ ff9da8b

Last change on this file since ff9da8b was 0924b6c, checked in by Özkan İliyaz <iliyaz_96@…>, 4 years ago

initial commit

  • Property mode set to 100644
File size: 250 bytes
RevLine 
[0924b6c]1<?php
2
3namespace App\Helpers;
4
5class Alert
6{
7 public static function flash($message, $type = "success")
8 {
9 return request()->session()->flash("alert", [
10 "message" => $message,
11 "type" => $type
12 ]);
13 }
14}
Note: See TracBrowser for help on using the repository browser.