Laravel
10 Questions
43 Total Posts
3 Snippets
All
Install Laravel Valet Linux+ development environment on Ubuntu System
The official Laravel Valet development environment is great if you are an Apple user. But there is no official Valet for Linux or Window system.
0
1
24715
Laravel Sanctum API Token Authentication Tutorial with example
Laravel Sanctum is a popular package for API Token Authentication. There are many other packages available to authenticate the APIs request in Laravel. For example, We are already (...)
1
1
13444
Create SPA authentication Using Laravel Sanctum and Vue.js
In this guide, we will focus on SPA authentication in a simple Vue.js app using Laravel Sanctum. Laravel Sanctum provides a featherweight authentication system for SPAs (single (...)
0
1
28539
Create API Authentication with Laravel Passport
In this article, we'll see how to implement restful API authentication using Laravel Passport. You should have experience working with Laravel as this is not an introductory tutorial. (...)
0
0
7565
Laravel Themer: multi-theme support for Laravel application
This Laravel Themer package adds multi-theme support to your application. This theme package improves any application while allowing the freedom to organize and maintain your app's (...)
0
2
6795
Difference between Laravel $request->input(), $request->get(), and $request->name direct property
If you’ve been around Laravel for a while, you might have seen there are three ways in controllers to retrieve inputs from the submitted form. For example, if you are trying (...)
0
0
11676
How to enable email verification support in Laravel
As we all know, an email confirmation is a must-have feature for the most web application. That is the inbuilt solution for us after the Laravel v5.7 release, and we can easily (...)
0
0
3015
How to send multiple attachment to mail in Laravel?
Asked by Iqbal ·
I am able to send email. However, I don't know how to send multiple attachments(images/pdf/docs). Any help would be appreciated. I am using laravel 7.
0
2
5487
How to Delay notifications by channel in Laravel 8.x?
Up until now, in Laravel, if you need to delay notifications, you could do it by chaining the delay method onto your notification object like so.
0
0
3482
Sending Email in Laravel using Gmail SMTP Server
In this post, we talk about how to send email using the Gmail SMTP server in Laravel. Well, there's no uncertainty the need to send emails in your web application will emerge, (...)
0
0
3771