Skip to main content
Filter by
Sorted by
Tagged with
1 vote
0 answers
26 views

<?php namespace App\Nova; use Illuminate\Http\Request; use Illuminate\Support\Facades\DB; use Laravel\Nova\Actions\Action; use Laravel\Nova\Fields\ID; use Laravel\Nova\Http\Requests\NovaRequest; ...
Sourav Saha's user avatar
0 votes
0 answers
73 views

Problem My Laravel project uses Nova dashboard. I want to add an eye icon to show/hide the password in the built-in Nova login page. What I tried I checked if vendor:publish exposes Nova views — but ...
Belal Magdy bebo's user avatar
0 votes
0 answers
64 views

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 ...
Adam's user avatar
  • 3
0 votes
1 answer
271 views

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&...
murcoder's user avatar
  • 109
0 votes
1 answer
400 views

On laravel 11 site I need manually edit content of nova-permission package and I edited my root composer.json : "require": { ... "vyuldashev/nova-permission": &...
Petro Gromovo's user avatar
0 votes
0 answers
45 views

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\...
mstdmstd's user avatar
  • 3,309
0 votes
0 answers
105 views

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 ...
Mohammed's user avatar
1 vote
1 answer
116 views

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 ...
maryam's user avatar
  • 13
0 votes
1 answer
40 views

Going through Laravel Nova documentation, I noticed that SearchableRelation appears to be a built-in feature in Nova. However, I couldn't find it in my project. How can I install or enable it? For ...
Hassan Zubair's user avatar
0 votes
0 answers
38 views

I have a resource of 10,000,000+ items and search is slow, especially while it searches for each letter typed. I have found a half-fix https://nova.laravel.com/docs/resources/the-basics#resource-index-...
That_LEGO_Guy's user avatar
0 votes
0 answers
20 views

In Laravel 10 / nova 4.27 app Category model has 'parent_id' field (root nodes), and BelongsToMany product relations. <?php namespace App\Models; use Illuminate\Database\Eloquent\Relations\...
mstdmstd's user avatar
  • 3,309
0 votes
1 answer
65 views

Reading manuals https://nova.laravel.com/docs/lenses/defining-lenses.html in Laravel 10 / nova 4.27 app I create a new lens with command php artisan nova:lens Orders/...
mstdmstd's user avatar
  • 3,309
-1 votes
1 answer
22 views

In a Laravel 10 / Nova 4.27 app, I'm using a large editor with tabs ("eminiarts/nova-tabs": "^2.2"), and I need to show or hide one of the tabs based on the value of the ...
mstdmstd's user avatar
  • 3,309
0 votes
0 answers
43 views

I made the following class using table-metric specified in docs. class OrdersInInvoiceWithExpireDate extends Table { /** * Calculate the value of the metric. * * @param \Laravel\...
mstdmstd's user avatar
  • 3,309
0 votes
1 answer
238 views

I want to disable only one option from select list, how I can do it? Select::make('Cloudflare', 'cloudflareId') ->searchable() ->options($allCloudflares) ->...
Maksim Riabchenko's user avatar
0 votes
1 answer
62 views

product and contracts, both has many to many relationship, I have added following in contracts nova resource. BelongsToMany::make('Products', 'products', Products::class) ->fields(...
Teletubbies's user avatar
0 votes
1 answer
55 views

Is there a way in laravel nova to extend the belongsToMany attach form to include addition fields. I have a relationship between Courses and Members as well as a relationship between Courses and ...
Jon Menard's user avatar
0 votes
0 answers
123 views

I've been diving into Laravel Nova and am really impressed with its intuitive UI and powerful features. As someone still in the learning phase of Laravel, I could really use some guidance from the ...
numbhill's user avatar
0 votes
0 answers
61 views

I am using devtical/nova-qrcode-field package to display a QRCode image field in laravel Nova, it works perfectly locally but when pushed to the server (Amazon lightsail) for test it doesn't display. ...
Gabe's user avatar
  • 156
0 votes
1 answer
203 views

Can someone please tell me how to use the included laravel nova fields in an own custom field. In my case I want to use the TrixField.vue in my custom field. I can't find how to implement this ... <...
heppi75's user avatar
  • 141
1 vote
1 answer
429 views

I would like to add a standalone button just next to the create button in a resource. without lots of work it's only purpose that it will work as an anchor tag to redirect to another page. What's a ...
Waad Mawlood's user avatar
0 votes
1 answer
119 views

I am working on a project using Nova, and I need to create a standard invoice view resource for the invoice model. I am uncertain about the best approach and would appreciate some guidance. Here's ...
Aseef Ahmed's user avatar
0 votes
2 answers
361 views

How can I get the current model in the laravel nova actions field function? Can't find it out ... public function fields(NovaRequest $request) { Log::info($request->model()); return [ ...
heppi75's user avatar
  • 141
3 votes
2 answers
886 views

I'm using the repeater field on my resource which looks and works great for editing, but how do I display the json data it saves to my detail page? I assume I use the KeyValue field for displaying but ...
mcornille's user avatar
  • 405
1 vote
0 answers
86 views

Laravel Version: 10.47.0 Nova Version: 4.23.0 (Silver Surfer) PHP Version: 8.2.13 Database Driver & Version: MySQL 10.11.6-MariaDB-1:10.11.6+maria~deb11 Operating System and Version: Debian 11 ...
NoAd's user avatar
  • 181

1
2 3 4 5
19