skip to Main Content

LARAVEL: How to display data from bootstrap modal?

I'm having problems with displaying data from modal. It works outside the modal but inside modal it only iterates 1 data. @foreach ($addresses->sortByDesc('status') as $address) <div class="col"> <div class="row g-0 flex-column">{{-- EDIT --}} <div class="col-12 col-lg-8 col-xl-7 col-xxl-5 d-flex justify-content-between">…

VIEW QUESTION

laravel controller not detected

I got a laravel proyect, but when i run php artisan route:list thows this error: ReflectionException Class "CuboController" does not exist at C:UsersricardevSistemaCubosLSvendorlaravelframeworksrcIlluminateFoundationConsoleRouteListCommand.php:234 230▕ if ($this->isFrameworkController($route)) { 231▕ return false; 232▕ } 233▕ ➜ 234▕ $path = (new ReflectionClass($route->getControllerClass())) 235▕…

VIEW QUESTION

Inertia redirect issue in Laravel with Vue

I have a modal in vue where I call this function const createChat = async (id) =>{ try { const response = await axios.post('/pdf-chat/create-chat', { name: name.value, pdfId: id, }); dialogVisible.value = false; console.log(response) } catch (error) { console.error('Error sending…

VIEW QUESTION
Back To Top
Search