How To Use Middleware In Laravel

how to use middleware in laravel

We do use middleware in Laravel to make sure authenticated user can access the application. Middleware works like a guard that helps to identify the user. We can create multiple middleware that can be assigned to different routes. We also can use middleware’s as default on each route for that we have to register middleware … Read more

Laravel Interview Questions For Beginners

Laravel Interview Questions For Beginners

In this article, we going to learn about Laravel interview questions so that you can have a clear vision of what you can be asked for. So, while covering these questions. This is only for beginners if you want to look forward maybe you will find something new in this article. Let’s start learning and … Read more

PHP Interview Questions For Beginners

php interview questions

PHP is a backend language that we use to develop web applications and mainly for dynamic work. As I also develop websites in PHP but the thing is that when I was learning PHP I wasn’t good at theory and explaining things in PHP. But at the same time I was really good at doing … Read more

Send Email With Attachment In Laravel

How to send mail with attachments in laravel

Sending emails in Laravel is a hot topic. Laravel made it easy to send emails just using by few commands and objects. It is not a complicated task to send emails; you also have many other easy ways to send emails. I am going to simplify each step for you and you will be able … Read more