Skip to content

Instantly share code, notes, and snippets.

@rizkhal
Last active February 22, 2020 07:54
Show Gist options
  • Save rizkhal/69eb801cb099145004528a58c64397dd to your computer and use it in GitHub Desktop.
Save rizkhal/69eb801cb099145004528a58c64397dd to your computer and use it in GitHub Desktop.
<?php
if (! function_exists('notice')) {
function notice($type, $content) {
$notices = session()->get('notice');
if(! is_array( $notices ))
$notices = [];
array_push($notices, [
'type' => $type,
'content' => $content
]);
session()->put('notice', $notices);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment