skip to Main Content

Laravel – upload file from subdomain to subdomain

How To Upload file from https://subdomain.laravel.com/ to https://assets.laravel.com/ Example your project on https://subdomain.laravel.com/ 'assets' => [ 'driver' => 'local', 'root' => public_path('assets/images'), // Path ke folder 'images' dalam folder 'assets' 'url' => 'https://assets.laravel.com/', // URL publik untuk mengakses file 'visibility'…

VIEW QUESTION

Laravel 11 Reverb and React Websocket connection error

I am trying to build a real-time chat application, but I am encountering issues connecting to my Reverb server from React. The error message I receive is as follows: runtime.ts:115 WebSocket connection to 'wss://localhost:8080/app/knycnmdeg1hemq2vnt1i?protocol=7&client=js&version=8.4.0-rc2&flash=false' failed: . Could you help me…

VIEW QUESTION

Laravel – Dependency Injection is not working on any of my Livewire 3 components

I'm facing a very weird issue. Dependency injection is not working, and I don't have any clue why it isn't. Here's my component: <?php namespace AppLivewireForms; use AppEnumsCourseType; use AppRepositoriesInterfacesICourseRepository; use BenSampoEnumRulesEnumValue; use Exception; use IlluminateSupportFacadesLog; use IlluminateValidationRule; use LivewireComponent;…

VIEW QUESTION
Back To Top
Search