php Flash消息

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了php Flash消息相关的知识,希望对你有一定的参考价值。

<?php 

function flash($message) {
  session()->flash('message', $message);
}

Route::post('projects', function() {

    // validate the projects
    // save the projects
    
    // flash('Your project has been created.'); // * Using the flash method above
    // OR
    session()->flash('message', 'Your project has been created.');
    
    return redirect('/');
    // return redirect('/')->with('message', 'Your project has been created.'); // * Shortcut option

});

// * Shortcut option
Route::post('projects', function() {

    // validate the projects
    // save the projects
    return redirect('/')->with('message', 'Your project has been created.'); // * Shortcut option

});
<?php

@if (session('message'))
    <p>{{ session('message') }}</p>
@endif

以上是关于php Flash消息的主要内容,如果未能解决你的问题,请参考以下文章

PHP flash消息类

php Flash消息

php Flash消息

php Laravel Bulma Flash消息

php Nette - flash消息

php Laravel Flash消息和验证错误