918 questions
-1
votes
0
answers
50
views
Best way to integrate Laravel Nova in a microservices architecture with Docker: same container or separate service? [closed]
We're transitioning from traditional monolithic PHP and pure JS web development to a modern infrastructure that includes:
CI/CD (Jenkins)
Docker or Podman-based containerization
Laravel and React
...
0
votes
0
answers
20
views
Lara Nova Admin Package stepanenko3
Has anyone tried stepanenko3 package in Nova Admin?
I have tried:
MenuItem::link('Error Logs', '/nova‑vendor/log-viewer')
MenuItem::link('Error Logs', '/nova‑vendor/stepanenko3/logs‑tool/logs' // ...
-3
votes
0
answers
27
views
Auto generate Order nbr in Laravel Nova using str_pad [duplicate]
I work with Laravel Nova , In my MySQL database I have a Table called Order, and a column called order_nbr I would appreciate your kind assistance to know how to automatically generate the Order ...
0
votes
0
answers
39
views
Laravel Nova Breadcrumbs with Custom Icons
I'm using Laravel Nova and looking for a way to customize breadcrumbs.
I want to add icons and also change the text of some pages.
I've checked the Nova documentation, but I couldn't find an official ...
-1
votes
1
answer
20
views
Why chmod() in Laravel Nova does not work with GeeseFS? [closed]
GeeseFS allows to mount S3 as unix filesystem but with Laravel Nova it does not work.
After turning on throwing filesystem exceptions in Laravel config/filesystems.php, parameter throw => true
...
0
votes
1
answer
111
views
Laravel 10 / Nova 4 - Inertia requests must receive a valid Inertia response
I have been racking my brains for days over this problem and could not fix it yet. I would be so appreciate if someone could help me!
# Current Environment (Local Docker)
"php": "8.1&...
0
votes
0
answers
6
views
How from user profile editor make reference to related model?
On laravel 11 / nova 4 app I I have User model with method :
public function userProfile(): HasOne
{
return $this->hasOne(UserProfile::class);
}
and in UserProfile model :
public function user(...
0
votes
1
answer
157
views
I got composer error with nova licence issue
On laravel 11 site I need manually edit content of nova-permission package and I edited my root composer.json :
"require": {
...
"vyuldashev/nova-permission": &...
0
votes
0
answers
34
views
How to add repository with plugin I need to edit in composer.json?
On laravel 11 site I have vyuldashev/nova-permission installed, so composer.json have :
"require": {
"php": "^8.2",
"laravel/framework": "^10.10&...
0
votes
0
answers
15
views
How to make test for nova action class, which is called from user's view page?
On laravel 11 / nova 4 app I use action class, which is called from user's view page :
<?php
namespace App\Nova\Actions\User;
use App\Enums\UserBalanceActionTypeEnum;
use App\Library\Facades\...
0
votes
0
answers
19
views
How to add laravel/pulse onto laravel/nova site?
I try to use pulse plugin on laravel/nova site
but when with default option in config/pulse.php :
'path' => env('PULSE_PATH', 'pulse'),
I got 404 error.
I tried to change it as :
'path' => env('...
0
votes
0
answers
68
views
How can I integrate Fancybox in Laravel Nova for an image gallery?
I'm building a Laravel Nova project and would like to integrate Fancybox to display an image gallery with lightbox and slider functionality. I have a field (stored as a JSON array of image paths) that ...
0
votes
1
answer
48
views
laravel nova 403 before login in production [closed]
Essentially, in the production environment, I encounter the 403 page even before logging in (it does not even show login page). Here's how the gate function in the NovaServiceProvider is defined:
...
1
vote
1
answer
59
views
not access offset of type Laravel\Nova\Support\PendingTranslation on array error when using maatwebsite/laravel-nova-excel
I'm encountering the following error when using the maatwebsite/laravel-nova-excel package in a Laravel Nova project:
Cannot access offset of type Laravel\Nova\Support\PendingTranslation on array
I ...
0
votes
0
answers
28
views
how to access custom field's data in the dependsOn() of other field in nova
CustomRepeatInterval::make('Repeat Every','custom_repeat_interval')
->dependsOn('repeat_interval', function (Field $field, NovaRequest $request, FormData $formData)
{
if ($formData->...