Laravel livewire choice.js does not update the dynamic options
Choice.js shows correct options every time when I refresh the page, but its not updating options if user does not refresh the page. my component code is correct it passes correct data to blade template but choice.js shows first time loaded options.
Why page with cached string have no auth-nav and footer from layout?
In laravel 11 / livewire 3 app I have a page with component with route in web routes/web.php :
Why on news detauils page there are no auth-nav and footer visible?
I have homepage with layout showing top menu resources/views/components/layouts/frontend.blade.php
with code :
passing updated props to child component
I have a parent component Post where it calls db to get data for select options #group which is only used for searching then I have child components createpost and updatepost in which they share the same blade view modal. the modal has the same select options as the parent; #c_group, #u_group. i also have an input new_group if the group is not available yet in db. on create or update, if a new group is entered, the new group will be saved and appear on the select option after. i managed to get the options to be updated on parent component, but the new ones won’t appear on child
How to use two layout in liveware?
I am trying to use two different layouts for the front end and admin panel in my Laravel 11 application with Livewire. In livewire.php, the ‘layout’ option is set to ‘components.layouts.app’. I want to configure separate layouts for each section. How can I dynamically switch layouts based on the current route or user role so that the front end uses one layout and the admin panel uses another? Is there a way to achieve this within Livewire components or by extending the base Livewire configuration?
How to open *.docx file with editor of the OS?
On laravel 10 / filament 3 site I create and save *.docx file with “Word2007” format using phpoffice/phpword library under site
storage(I keep path of the generated file). After saving of the file I need to open the file with editor which is used for this type of file
in the OS of the user. I search OS independeble desicion . How can I do it ?
Why I can notinstall husam-tariq/filament-database-schedule On laravel 10 / livewire 3 site?
On laravel 10 / livewire 3 site I try to add husam-tariq/filament-database-schedule package, but I have an error :
How does one convert laravel routes to livewire routes
I am trying to get a livewire route
Issue with modal not submiting form
The form is not submitted in the modal.
The problem is that when reading the form it doesn’t recognize the livewire parameters,because its not calling the method “addNote”.
When submit the page just refreshes.
setting livewire switch default value to ON
I have a form which shows a customer phone number and implemented with livewire. We can add multiple phone numbers in the form. There is a switch beside the phone named primary if its active the phone number is displayed while listing customers. By default the primary switch is OFF how can I change it’s default behaviour and make it ON. The blade file code for switch is as follows.