Tag Laravel found of 86 results

How to Convert Image File to Base64 String in Laravel

How to Convert Image File to Base64 String in Laravel

In this article we are going to discuss about Laravel how to convert image file to base64 string format. You will see how to convert image file to base64 format. Then we will look at example how convert the file to base 64 with Laravel...

Sovary September 17, 2022 670
#Laravel  #PHP 
Laravel Call Function Controller in Blade

Laravel Call Function Controller in Blade

Today I will show step by step how to access function in controller from blade Laravel. The below example will give you idea show simple example of Laravel call controller function from HTML blade...

Sovary September 17, 2022 634
#Laravel  #PHP 
Drag Drop File Upload with Dropzone.js in Laravel 8, Laravel 9

Drag Drop File Upload with Dropzone.js in Laravel 8, Laravel 9

If you want to see example how to drag and drop file in browser to upload file in to server then this article will help you to upload by drag and drop with plugin call dropzone.js. You will see below example to upload multiple files step by step..

Sovary August 27, 2022 8.73K
#Laravel  #PHP  #Laravel 9 
How to Add Google Translate in Laravel

How to Add Google Translate in Laravel

Laravel support multi language using localization, but it required setting in configuration files. With Google Translate you don't have to do more hard work. Today tutorial we will discuss on how to use Google Translator with Laravel. We will guide how to use Google Translate API with Laravel app in easy with simple package installation...

Sovary August 27, 2022 715
#Laravel  #PHP  #Laravel 9 
Laravel Create Download Zip Archive File Example Tutorial

Laravel Create Download Zip Archive File Example Tutorial

Hi artisan when you navigate file in server with your browser and there are many files but you want them zip with a single file so that you easily download with one click attachment is download to your computer. Today I will show you how to create zip file in Laravel. We will use Ziparchive to perform this task...

Sovary August 25, 2022 276
#Laravel  #PHP 
Autocomplete Search Ajax Typeahead from Database in Laravel

Autocomplete Search Ajax Typeahead from Database in Laravel

You have ever seen when typing in Google search bar will drop down suggest list of keywords. This is make user convenient to fill in there criteria. In this article I will show you how to create autocompleted search from database to filled in search box...

Sovary August 23, 2022 563
#JQuery  #Laravel  #PHP 
Laravel 9 Multiple Files Upload with Database Example

Laravel 9 Multiple Files Upload with Database Example

In this tutorial I will show you upload multiple file in Laravel 9 with example. We will development the application Laravel from scratch with basic. We will implement and take a look at example of multiple file upload Laravel 9 with preview before upload. Following below step for uploading multiple file in Laravel 9...

Sovary August 23, 2022 376
#Laravel  #PHP  #Laravel 9 
Restrict Limit Too Many Login Attempts in Laravel

Restrict Limit Too Many Login Attempts in Laravel

Are you concern that someone attempt login to get unauthorized in you app? this is a right place because today I am going to show you how can we block user doing attempts login in you application. Laravel can track attempt login which we can use this feature to prevent brute force attack your account credential...

Sovary August 20, 2022 799
#Laravel  #PHP  #Laravel 9 
Laravel Force User Setup Strong Password

Laravel Force User Setup Strong Password

Commonly password are vulnerable for user setup with weak passwords which attacker and exploit hack into their account. To prevent user using very simple/regular passwords like "qwerty" , "123456" , "admin" etc...Laravel have no built in function to check these kind of password but you can validate with regular expression. Another way you can use "unicodeve..

Sovary August 20, 2022 552
#Laravel  #PHP  #Laravel 9 
Laravel Create Custom Artisan Command

Laravel Create Custom Artisan Command

Hello today we are going to talk about how to create custom command Artisan to perform a specific task. Actually, there are built-in Artisan command in Laravel application, example if we want to start Laravel server we will type command "php artisan serve". But f..

Sovary August 16, 2022 285
#Laravel  #PHP