File upload using laravel – ajax
File uploads is one of the most important functions on the internet, and we have bigger files nowadays, which means it's not enough to have simple input fields - we…
File uploads is one of the most important functions on the internet, and we have bigger files nowadays, which means it's not enough to have simple input fields - we…
Payment gateways are an essential operational component of any ecommerce store. It completes the payment mechanism of any ecommerce store and allows users to make hassle-free online payments. In this…
composer require pusher/pusher-php-server php artisan make:event PusherBroadcast
PhonePe Payment Gateway Integration in Laravel; In this post, we will phopepe integrate in our laravel application. Phopepe is India's largets payment collection api platform that allows vendors to integration…
Goto: https://chatify.munafio.com/installation composer require laravel/jetstream php artisan jetstream:install livewire php artisan jetstream:install livewire --teams composer require munafio/chatify php artisan chatify:install php artisan migrate php artisan serve Goto this link: http://127.0.0.1:1000/chatify…
To build a login with a Google account in the Laravel system, we need to have a Gmail email account. This gmail account will help us to create an account…
if($files=$req->file('thumbnail')){ // $name = $files->getClientOriginalName(); $fileName = time().'.'.$files->getClientOriginalName(); $files->storeAs('public/uploads', $fileName); } php artisan storage:link {{asset('storage/public')}}/abc.jpg