CodeBriefly
Tech Magazine

Laravel 5.7 – New Feature Dump Server

0 1,254

Get real time updates directly on you device, subscribe now.

In this article, we will discuss the “Laravel 5.7 New Feature Dump Server”. I’m going to describe you the use of Dump Server in Laravel Project. As you know, Laravel latest version 5.7 comes with some of the new features such as Email Verifications, Dump Server, and many more. We will discuss all those features in our future articles.

In Laravel 5.7, you will see a new artisan command dump-server.dump server

Now, the question is “What is the use of dump-server?”

The dump-server command is used to see the details dump information on the terminal. And the web page is not affecting with the dump information.

In other words, it’s more useful for developers, they can use the dump-server command to fetch the dump information with disturbing the users.

Implementing Dump Server

Use the following to and add it to your route/web.php file.

Route::get('/', function () {
    $info = [
        'name' => 'Pankaj Sood',
        'blog' => 'https://codebriefly.com'
    ];
    dump($info);
    return view('index');
});

After adding this following code, you just need to browse the page and you will see the result as like the following screenshot. It’s the most common way still we used in Laravel 5.6.

dump server

Dump Server Command

Now, time to execute the following artisan command.

php artisan dump-server

After execution, the above command our local var dump server is ready for use. It can track all the dump information without affecting the user.

var dump server

Now, when we browse the page where we call the dump function. All the dump information moved to out Laravel Var Dump Server in the terminal. The user will not see any dump information. This feature is more useful when we need to debug any live Laravel application. Where we don’t afford to close or down our application.

You can see the following result of working dump-server.

Terminal:

dump server

Browser:

dump server

Conclusion

In this article, we will discuss the “Laravel 5.7 New Feature Dump Server”. Hope you get rich information about the use of dump-server and definitely use this in your future development projects. One more thing, dump server also supports die dump function called dd() and when you call this function it will kill the execution further from dd function. Please feel free to add the comment if any query or you can submit your feedback 😉


You may like:

Laravel 5.6 – Debugging with dump and die dump function

Laravel Custom Artisan Command

Email Verification Laravel 5.7 New Feature

Laravel 5 Export to pdf using laravel-dompdf

If you like our content, please consider buying us a coffee.
Thank you for your support!
Buy Me a Coffee

Get real time updates directly on you device, subscribe now.

Leave A Reply

Your email address will not be published.

This website uses cookies to improve your experience. We'll assume you're ok with this, but you can opt-out if you wish. AcceptRead More