Relative Content

Tag Archive for javascriptphplaravel

Uploadinga loarge number of files

I need to upload an unlimited number of images from a users disk to Laravel storage, and would prefer to do it without changing any parameters if possible,

Laravel Store Integration with CJdropshipping

Hello Everyone I run a Laravel store specializing in furniture and home goods. I’ve successfully integrated the CJdropshipping API with my website and have synchronized products.I’m facing a challenge:A bulk product import has overburdened my store. I need an e-commerce store integration expert to address this issue.Do you have experience integrating Laravel stores with CJdropshipping?I require someone with Laravel-CJdropshipping integration expertise to customize product syncing with my store. I only want to sync furniture and home décor items, excluding any irrelevant products.Can you assist me in creating a dedicated furniture catalog on the CJdropshipping website?I also need to create a custom CJdropshipping catalog exclusively featuring furniture products.If you believe you have the necessary skills and experience for this task, please reply to this question with your proposal.Additional Notes:Please outline your previous Laravel-CJdropshipping store integration experience in your proposal.Include examples of relevant past work as well.I’m available to discuss this project further.Thank you for your interestSincerely

How do you broadcast and live from a system with OBS Studio without having the application?

I have a system to make live shows and transmissions with OBS Studio, where basically with the application, you create your live show on my system, using the transmission key and the server, you place it in OBS Studio and the live show works well. But, they have asked me that the user does not have to enter OBS Studio to create the live stream. That is, the direct can be created from the same system.

Livewire Multistep form with JS Signature Pad

I’m building a KYC system that has multiple steps for the customer’s info
I’m using vildanbina/livewire-wizard for the multi step form
it’s working fine
but on the last step I have created a javascript signature pad that allows the user to draw their signature and then stores it as a base64
the problem is that when I move through steps the javascript code of the signature pad doesn’t work ( the user can’t draw )
but when I reach the step of the signature and refresh the page the javascript code works and the user is able to sign

how to update a variable php in laravel using javascript?

<?php use AppModelspetBreedType; $breeds = petBreedType::all(); $hasJantan = false; ?> {{– {{ dd($hasJantan) }} –}} <select class=”” name=”types[]” id=”types” multiple> <option value=”2″ {{ in_array(‘2’, old(‘types’, [])) ? ‘selected’ : ” }} {{ $hasJantan ? ‘selected’ : ” }}>Anjing</option> <option value=”1″ {{ in_array(‘1’, old(‘types’, [])) ? ‘selected’ : ” }}>Kucing</option> </select> <script> var url = window.location.href; […]