Skip to main content
Filter by
Sorted by
Tagged with
0 votes
1 answer
486 views

I have a file upload component that I am trying to pass in data with the image to the controller so I can create the photo object. Some of the data are things such as disk, like 'S3' so the controller ...
Ryan M's user avatar
  • 303
0 votes
0 answers
198 views

In this case $fields[] = Select::make('Auto renewal domain', 'domainAM') ->dependsOn(['domainId'], function ($field, $request, $formData) { if ($formData-...
Maksim Riabchenko's user avatar
1 vote
0 answers
199 views

This is the error I get when I want to use the Laravel Nova "nova-flexible-content" package, I don't know what the problem is and where I went wrong Flexible::make('Content') ->...
user21355408's user avatar
2 votes
2 answers
3k views

I am trying to allow a populated column in a Nova Lens to be sortable. The root data that populates my Number field comes from a function called during lens initialization to reach out to an API. For ...
Asa LeHolland's user avatar
0 votes
1 answer
1k views

I user Laravel 10.1.5 and Nova 4.22.1 When in .env APP_ENV=local all ok But when APP_ENV=production I see error 403 on my admin/login page I try to write Gate::define('viewNova', function ($...
Maksim Riabchenko's user avatar
1 vote
1 answer
1k views

I have the following have the following handle() method in a Nova Action: public function handle(ActionFields $fields, Collection $models) { $file = Excel::store(new \App\Exports\...
Cornel Verster's user avatar
0 votes
2 answers
3k views

I'm trying to generate a fake image to populate seeder data. I created a seeder with this: $this->faker->image(storage_path('app/public/products'), 500, 500) When I try to access them through ...
Jonathan Lafleur's user avatar
3 votes
1 answer
528 views

I have a resource with 5 million rows in an InnoDB table. Nova times out when executing a COUNT(*) query. I imagine this is used in pagination. Is there a way to disable that behavior (just have a ...
Michael Love's user avatar
0 votes
1 answer
42 views

I have an input, and I want to extract several numbers separated by , and store each number on each new line in the database. model - CouponDocument <?php namespace App\Models; use App\Http\...
Vinicius Demarchi's user avatar
1 vote
0 answers
112 views

I would like to know how to override the url that the create resource button routes to, on a resource listing page?
Iron Brew's user avatar
0 votes
1 answer
83 views

I created a users table and I have set up the user roles using boolean, see code below: $table->id(); $table->string('name'); $table->string('email')->unique(); $table->timestamp('...
Renzo's user avatar
  • 109
1 vote
0 answers
255 views

using Laravel Nova, I want to disable inactive user from login, and logout the user if already logged in, i"m having a boolean column: "active" in users table. if possible to show a ...
David Gabbay's user avatar
-1 votes
1 answer
121 views

I'm attempting to write a test to confirm that a Nova Lens exists using PHPUnit. This will be used as the base case to build on whether certain users have access to that lens or not. Here is what I ...
Asa LeHolland's user avatar
0 votes
1 answer
820 views

Am working on an app using Laravel Nova and wanted to implement a calendar from https://github.com/czemu/nova-calendar-tool. I followed all instructions but have received the following error: Class ...
Destiny DJSD Samkange's user avatar
-3 votes
1 answer
2k views

I'm working on a Laravel project. I installed Laravel Nova via php artisan and integrated to the project locally. I know how to deploy files, but I don't know how should I deploy this package to the ...
Shayimerdan's user avatar
-1 votes
1 answer
311 views

I seriously cannot wrap my head around this. Locally the tag field of Laravel Nova 4.0 works like a charm (https://nova.laravel.com/docs/4.0/resources/fields.html#tag-field). On production it results ...
Rob Derks's user avatar
  • 320
0 votes
1 answer
252 views

I'm trying to merge two queries results in Laravel Nova. I've gone through the documentation but haven't found a solution. Basically, I'd like to merge two queries results and show them in a resource ...
Himanshu Rahi's user avatar
0 votes
1 answer
189 views

I am stuck with a issue on Laravel. I like to insert a records multiple times. The user can add a amount, lets say 3. Than the insert query has to run 3 times. I was able to make a observer but when i ...
Puya Sarmidani's user avatar
1 vote
0 answers
91 views

I'd like to add a Metric to a Nova dashboard where an increase in the value is a bad thing. Meaning, in the picture like below, the arrow would be red instead of green. Is this possible to ...
Ben's user avatar
  • 62.7k
0 votes
1 answer
1k views

I use Laravel 8.83.16 and Nova 3.32 for admin area Also I use Digitalcloud\MultilingualNova\Multilingual for lang in site I create functional and fields for users For example, field name Text::make('...
Maksim Riabchenko's user avatar
1 vote
0 answers
422 views

I'm using Laravel 9 and Nova 4 to create an admin panel and recently got the request you can see in the title. Is there any way to let the user dynamically select which fields of the resource are ...
Sebito's user avatar
  • 11
0 votes
1 answer
989 views

i try to upload avatar photo on my user model, using laravel nova Fields\Avatar applying the simpliest code, but it return 0 value on my database, the disk already set to s3 disk in filesystem also ...
wetguns's user avatar
  • 31
0 votes
1 answer
361 views

I am currently developing a script to synchronize the data stored in my database with an external API. That is to say that all the records created/deleted must also be created/deleted on the external ...
Louis Sallée-Delille's user avatar
1 vote
2 answers
735 views

I have a BelongsToMany relationship between Users and Products defined in the Nova Model: BelongsToMany::make('Products'), //user has many products The underlying models User and Athlete both have the ...
Adrenaxus's user avatar
  • 1,613
0 votes
1 answer
1k views

firstly thank you in advance. I have the following Models , User , Location, Listing, Offer. The relationships are: User Model: public function location() { return $this->hasOne(Location::class)...
WesselsW's user avatar
-3 votes
1 answer
555 views

I am using Laravel version 9.41 and Nova 4. I can delete records, however it appears that on the frontend/JavaScript side of things my form fields are not having their contents captured and sent back ...
WebDev-SysAdmin's user avatar
0 votes
1 answer
395 views

I am working with field MorphTo and I try to make conditions for the resources. For example I have 4 resources: Accounts PaymentMethodCreditCard PaymentMethodBankAccount Transactions Every Account can ...
Mr.Smith's user avatar
  • 190
-1 votes
1 answer
319 views

I have 3 tables of: products table - id - title - etc. purchases table - id - code - etc. purchase_products table - id - purchase_id - product_id - qty - etc. My goal is to retrieve purchases for ...
Eimantas Dev's user avatar
  • 1,386
0 votes
1 answer
276 views

I have defined a HasMany relationsship in my Nova resource. Nova fires two requests when trying to load the children in the parent detail view: 1. GET /nova-api/childResources?viaResource=...
Rob's user avatar
  • 1,338
1 vote
1 answer
911 views

i make field with relation BelongsTo::make and want add for search title image, the link to the image is stored in the resource field as url I tried to make an img tag, but the title escapes the html ...
Michael's user avatar
  • 23
0 votes
1 answer
1k views

The parent resource has these fields Select::make('Currency')->options(...), HasOne::make('Child', 'child', 'App\Nova\ChildResource')->required(), as I've added HasOne->required, the ...
MJ Khan's user avatar
  • 1,736
1 vote
1 answer
831 views

I am using domPDF to print a PDF from a Laravel Nova action. PDF generation and download works. What I can't do is pass the selection of records ($models) to the view that generates the PDF. ...
TaM's user avatar
  • 35
0 votes
1 answer
1k views

I have the following structure Route HasMany Steps With a single Nova row in my Route view, I want to display the results of that relationship like so: Route Name Some Route Detail Steps RouteA ABC -...
Asa LeHolland's user avatar
1 vote
1 answer
698 views

I am trying to test the tool I have been created. When I used relationship field in one of my resource, the page detail on this resource give me Not found. /* My Relationship field */ (Ticket Resource)...
Sezo Hessen's user avatar
4 votes
1 answer
1k views

I'm using the new (as of writing this) Laravel Nova 4.0 and the official impersonation trait / implementation. When I impersonate a user it redirects to the frontend homepage /. I would like it to ...
Grant's user avatar
  • 6,397
0 votes
1 answer
285 views

I am attempting to add Pest and unit tests to a Nova Admin/Laravel application. I want to test that a page exists, but I don't want to have to deal with whether or not the user is authenticated as an ...
Asa LeHolland's user avatar
1 vote
0 answers
42 views

WP heartbeat for Laravel Nova?? I need the option to lock a resource when someone opens it for edit. So, like with WP heartbeat, that makes sure only one is using the resource. Laravel Nova have the “...
Martin Knudsen's user avatar
1 vote
2 answers
504 views

in the nova resource I can define an image field with a media library addon package like: Images::make('Main image', 'media_main') ->setFileName(static function($originalFilename, $extension) { ...
heppi75's user avatar
  • 141
0 votes
2 answers
3k views

I am running into an error with Laravel Nova that I'm not sure how to diagnose. When I try to log in I get "There was a problem submitting the form." The console does not show any errors. ...
John's user avatar
  • 95
1 vote
1 answer
2k views

I just started work on the laravel 9 and using Nova along with vite(not using webpack.mix.js). Laravel Nova works great and I created many resources, it just works great, but I am wondering how can I ...
webfreaks's user avatar
0 votes
0 answers
352 views

I have followed this guide (https://laravel.com/docs/9.x/filesystem#amazon-s3-compatible-filesystems) and did the following. I have tried several ways to integrate AWS s3, but it's not working: I ...
Lonare's user avatar
  • 4,801
0 votes
1 answer
342 views

I am trying to sort out some relationship with nova v4, but it's not working. I have : users id name groups id name groups_users user_id group_id now I want to show groups belonging to users inside ...
Lonare's user avatar
  • 4,801
-1 votes
2 answers
597 views

i am trying to create a page using laravel nova that only show 3 chart without displaying table or row data. enter image description here is it can be using nova resource or nova tools ? or any other ...
Ahmad Hidayatullah's user avatar
1 vote
1 answer
1k views

I want to change the placeholder of a Laravel Nova Text field. Currently this is being overwritten by the $attribute in the model: protected $attributes = [ 'name' => 'Member Name', ]; The code ...
jkstallard's user avatar
6 votes
2 answers
5k views

What is the way to change the logo in Laravel Nova4? I have checked the document but I can not find the way.
Bhavin Thummar's user avatar
1 vote
1 answer
647 views

In laravel Nova resources I can change the resource name with label function but in Lens, with the same function it doesn't work. Any idea? Code: public static function label(): string { return '...
TaM's user avatar
  • 35
0 votes
0 answers
437 views

I really like Laravel Nova but it's really complicated for a newbie like me to do something on the frontend that interacts with backend resources. Can anyone tell me how to make a form insert data ...
TaM's user avatar
  • 35
0 votes
1 answer
337 views

I'm migrating a project from a few months ago made with AdminLTE to Laravel Nova (mainly as part of my learning, I'm still a newbie in Laravel) and I have an issue that I don't know how to approach. ...
TaM's user avatar
  • 35
1 vote
1 answer
894 views

After nova installation in apiato I have changed the provider and dashboard path directory at root directory to specific container and I am waiting to see the login page but I got this error laravel ...
maryam nabiyan's user avatar
2 votes
0 answers
1k views

I'm using laravel nova 4 for creating an admin panel. I'm trying to override a existed nova component. This is what I have done: Create BelongsToField.vue in resources/js/nova/components/Form, then ...
simpsons3's user avatar
  • 1,019

1 2
3
4 5
19