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
2 answers

voyager php artisan voyager:install --with-dummy error

[Illuminate\Database\QueryException] SQLSTATE[42000]: Syntax error or access violation: 1071 Specified key was too long; max key length is 1000 bytes ( SQL: alter table translations add unique …
Ezatla
  • 115
  • 1
  • 1
  • 7
-1
votes
1 answer

Installing Voyager On Laravel 10

I have a fresh Laravel 10 project and I wanted to add Voyager, so I tried running: composer require tcg/voyager But it shows me this: Problem 1 - tcg/voyager v0.11.14 requires illuminate/support ~5.3.0|~5.4.0 -> found illuminate/support[v5.3.0,…
Pouya
  • 117
  • 1
  • 14
-1
votes
1 answer

Problem with defining extra routes in voyager

I'm using the voyager package in my laravel app. I made a route group with a {lang} prefix for localization. everything is working fine in the base app but when I go to /admin which is the route for the voyager panel, it returns an error saying that…
-1
votes
2 answers

Pass parameter to laravel voyager menu builder link() method

I made a navbar using voyager's menu builder. I'm trying to add localization functionality to my app but can't figure out how to pass a {lang} parameter to this line of code: @foreach ($items as $menu_item)
-1
votes
1 answer

Laravel Voyager doesn't display uploaded images uploaded to server

Laravel Voyager doesn't display images So in local machine everything works well, however recently i moved to hosting and i was confused that voyager doesn't display images. But Images which i added in local machine is displayed
dak0k
  • 13
  • 3
-1
votes
1 answer

How can I retrieve 3 values ​with the every id in the foreach method?

@foreach ($options as $ozellik) @if($ozellik->urun_kategori == $urunler->id ) {!!$ozellik->ozellik!!}
Emre Kd
  • 27
  • 5
-1
votes
1 answer

valid json response with Postman but Invalid response with https module

I am calling this endpoint https://www.linkedin.com/voyager/api/typeahead/hitsV2?keywords="sousse…
-1
votes
1 answer

How can i create thumbnails with image, with coord X-0, Y-0

Voyager creates a crop on from the center, and I need to crop the beginning of the image. How do I do this? Only the width and height of the crop are specified in the documentation. "name": "cropped", "crop": { "width": "300", …
-1
votes
1 answer

Voyager : VoyagerBreadController not found

I want to create custom controller in Voyager admin package, but I got this error message : Class 'App\Http\Controllers\Back\VoyagerBreadController' not found I added the new controller name to the bread. I created a namespace a folder /Back…
dev198742
  • 11
  • 3
-1
votes
1 answer

Problem with Voyager admin panel routing and Vue js router in laravel

I`m developing locally SPA application using Vuejs V2 in Laravel V8 framework. My routes/web.php file have this codes: Route::group(['prefix' => 'admin'], function () { Voyager::routes(); }); //for disallow accessing route from anywhere alse…
Pejman Kheyri
  • 4,044
  • 9
  • 32
  • 39
-1
votes
2 answers

Dropdown is required even informing value - Voyager Laravel

I'm using Voyager Laravel, in a selectbox relation field with another table, even selecting an option is showing an error that the field is required. What to do? Relationship: Relationship image Form: Form Image
-1
votes
1 answer

How can i solve this Exception that occurs when i migrate my Voyager (admin panal ) BadMethodCallException date_time_set does not exist

BadMethodCallException : Method Illuminate\Database\Schema\Blueprint::date_time_set does not exist. at // C:\wamp64\www\NewsApp\vendor\laravel\framework\src\Illuminate\Support \Traits\Macroable.php:104 100| */ 101| …
-1
votes
1 answer

Laravel Voyager SQLSTATE[HY000]: General error: 1364 Field 'id' doesn't have a default value

I'm using voyager as admin panel in my backend getting this type of error while creating BREAD SQLSTATE[HY000]: General error: 1364 Field 'id' doesn't have a default value (SQL: insert into `data_types` (`name`, `display_name_singular`,…
-1
votes
3 answers

Laravel Voyager Avatar not showing in AWS EC2

AWS EC2 is not showing the avatar in Laravel Voyager. Typically when this kind of error pop ups in local server we used to change the APP_URL in .env to fix the problem. But I have no idea now in the case of AWS EC2. I think it’s the problem with…
Jashan PJ
  • 4,177
  • 4
  • 27
  • 41
-1
votes
1 answer

Laravel Voyager Route Restriction

How to do this: 1. Access route only when user is login. 2. Redirect to voyager login when accessing the restricted page. Route::get('/call_sheet', 'CallSheetsController@index'); the route returns a view.
TRD-Warren
  • 357
  • 5
  • 16
1 2 3
27
28