Skip to content

Instantly share code, notes, and snippets.

@Moccine
Created August 1, 2016 16:10
Show Gist options
  • Save Moccine/3017dffffdd5499920a14b7aa78081f0 to your computer and use it in GitHub Desktop.
Save Moccine/3017dffffdd5499920a14b7aa78081f0 to your computer and use it in GitHub Desktop.
<?php
use App\User;
function flash($title=null, $message=null){
$flash=app('App\Http\Flash');
if (func_num_args()==0){
return $flash;
}
return $flash->info($title, $message);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment