Questions tagged [voyager]

Voyager is a Laravel Admin Package that includes BREAD(CRUD) operations, a media manager, menu builder, and more.

Voyager is a Laravel Admin Package that includes BREAD(CRUD) operations, a media manager, menu builder, and more.

References

415 questions
0
votes
1 answer

Laravel / Voyager creating event not firing in User model

I am trying to insert some logic when the 'creating' event is fired in the User model of a Laravel/Voyager application, here's my code:
GiulioG
  • 369
  • 4
  • 15
0
votes
0 answers

js error when submit any form in voyager laravel

i have just create new laravel project and then include the Voyager package as document and i have done configuration of the project after serve the project and access to admin control panel , i can't submit any form for example : when i press save…
0
votes
2 answers

Laravel Voyager image broken after uploading in server

Laravel Version: 5.5 Voyager Version: 1.0 PHP Version: 7 I have uploaded my laravel project in cPanel. Previous images are shown successfully but the newly added images are not showing. Here last 2 images are already in the project before uploading…
0
votes
1 answer

Laravel Voyager-Deletion of table fields does not delete from view

I am working on a very simple web application and managing admin panel using Laravel Voyager Version: 1.1 and Laravel Version 5.7. I have created Courses table using Voyager database tool. There is a column by the name of tutor_id in Courses…
Sajjad Ali
  • 304
  • 3
  • 12
0
votes
1 answer

How can i resolve the enable the extensions in php.ini?

I am trying to install voyager package in Laravel application (The project is created on the WAPP Stack in Alibaba Cloud ECS instance) it throws me a like it is unable to install the package, Please enable the extensions in the php.ini but it is…
0
votes
0 answers

How to include a select input in edit view in voyager project?

My problem is the next in a voyager project I'm working on. I have an enterprise table and a users table. I need to add a select input in the edit view of users table - but this view is in…
tazzmaniac
  • 13
  • 5
0
votes
1 answer

Laravel Voyager: deleting all default bread for tables

When I installed voyager, I cleaned up all the default BREADs such as users and roles to just begin my work from scratch and then when I tried to go roles tab on the dashboard I got an error: ( ErrorException: Trying to get property of non-object…
0
votes
1 answer

Multilevel menu in Laravel Voyager admin panel not working

I am using Voyager admin package in my Laravel app. I tried to make 2 level dropdown menu like this: Pages -page1 -page2 -page2A -page2B but it seems that Voyager does not support 2 or more than 2 level menu dropdown. So I searched…
Rakesh K
  • 1,290
  • 1
  • 16
  • 43
0
votes
1 answer

Voyager navbar padding problem when override

Problem: When I override my voyager view using a custom controller. I am getting a padding problem at the top: problem Desired output This is how it should be: output My code browse.blade.php @extends('voyager::master') @section('content') …
Maxime Barber
  • 101
  • 1
  • 2
  • 10
0
votes
1 answer

Laravel Voyager, update on 1 table, update on another

Language: PHP Framework: Laravel Dependency / Library: Laravel Voyager I have 3 Database tables: Users, Schedule of Reviews and Appointments. The users can reserve many schedules, and schedules can be reserved by many users, so basically, the…
user6940918
0
votes
1 answer

Voyager: upload data and images location

I just prepared this nice shopping website code https://github.com/drehimself/laravel-ecommerce-example I go admin page then upload some new items but those item data and images are not dislayed. I tryed to look contoller page but I couldn't find…
blueink
  • 69
  • 1
  • 14
0
votes
0 answers

Laravel Voyager - Filter Subcategory upon selecting Category

I am using Laravel Voyager admin panel. I have a 'products' table where PRODUCT has parent SUBCATEGORY and CATEGORY. I have also made these relationships: 'product-subcategory' and 'product-category'. So, when I want to add new product, I can choose…
user33192
  • 1,012
  • 1
  • 13
  • 21
0
votes
0 answers

laravel voyager soft delete issue

I'm trying to get soft deleting work on laravel voyager but everytime I delete a post it's also deleted in my database. here is my post model :
0
votes
1 answer

How to Change File Upload Path in Voyager

I have a application created using Laravel and Voyager Admin Panel when I run my application on localhost voyager uploaded image save in project/public/storage but when I deploye my Project to shared hosting voyager files uploading to…
0
votes
2 answers

Laravel Invalid argument supplied for foreach

Model Doctor class Doctor extends Model { public function addresses() { return $this->belongsTo(Doctor::class); } } Model Address class Address extends Model { public function doctors() { return…
Olek Szewczak
  • 23
  • 1
  • 1
  • 5