Questions tagged [laravel-backpack]

Backpack for Laravel is a selection of Laravel packages designed to make building administrative panels easier. Use with the [laravel] and/or [php] tags

  • Backpack helps to build sections where your admins can manipulate entries ;CRUD Panels to perform most basic operations.
  • Backpack provides with a visual interface for the admin panel.

To know more about it visit backpack.

855 questions
-1
votes
1 answer

How to use CRUD controller Index (list table) in other controller

I want to make the list of table who have relation only, example: Table: Order Process In ProcessCrudController I want to replace the Process list view into Order list view that only have relation (order-process). The solution I've tried: Create…
vreedom18
  • 341
  • 2
  • 13
-1
votes
1 answer

How to add dynamic dropdown menu in laravel backpack

I am using Laravel backpack 3.4 version. But I can't understand how to implement dynamic dependency menu using backpack. Looking reply?
Russel Monzur
  • 153
  • 1
  • 1
  • 10
-1
votes
1 answer

How to find corresponding record of child table from parent record

I am doing a project in laravel and using backpack for making admin panel. I have a table named users and another table user_details in which primary key of users table is used as a foreign key. My question is that how can i access details of a…
-1
votes
1 answer

Laravel Backpack Query Builder select value or is null

I'm using backpack CRUD for laravel and i'm trying to request my database. My problem is how can i join tables on values or null ? this is what i want select * from `baskets` inner join `users` on `baskets`.`donor_id` = `users`.`id` inner…
David Auvray
  • 288
  • 1
  • 3
  • 20
-1
votes
2 answers

Laravel - Backpack. Display field from other model

After many research I couldn't find the answer to my question. I have a model "Station" with two fields : "name" and "city_id". In my Station view (in the backpack admin panel) I would like to display city's name (in the model City). Station and…
-1
votes
2 answers

How to add select_from_array in Backpack for Laravel page/create

I want to add a dropdown field picking up an array from config file. I have tried this but getting an error. In config/gallery.php: return [ 'column_num' => [ ''=>'-- Choose one --', 'one' => 'Category: One column', …
shin
  • 31,901
  • 69
  • 184
  • 271
-2
votes
1 answer

Laravel backpack Translate create button in controller

How to translate create button in list view in controller? Cant find solution in docs.
-2
votes
2 answers

backpackforlaravel: how can we override login controller to integrate 2fa?

Actually the magnificent piece of software called backpack for laravel cannot handle natively the 2fa auth, for now, at may of 2022. We would like to add to your project this package: https://github.com/thecodework/two-factor-authentication To be…
realtebo
  • 23,922
  • 37
  • 112
  • 189
-2
votes
1 answer

use product of select BBDD with the CRUD of backpack

Hello, we have acquired backpack laravel for a specific project. We have established communication with an additional database, from which we obtain the result of a SELECT, the result we want to show with the CRUD view for filtering or exporting…
-2
votes
2 answers

Laravel: How to separate array from query result into variables?

I have something like this: return Model::get()->pluck('count','column'); Result: {"ABC":1,"DEF":3,"GHI":1,"JKL":2} How to separate the 'column' and 'count' into variables? $column = ["ABC","DEF","GHI","JKL"]; $count = [1,3,1,2];
-2
votes
1 answer

How to open Laravel Backpack admin page?

I have just installed Laravel Backpack admin panel using composer and artisan. It's installed successfully but now i am trying to access it using localhost/myprojectname/public/admin and it's returning 404 error page. Can anyone help what is the…
Imran Qamer
  • 2,253
  • 3
  • 29
  • 52
-2
votes
2 answers

Accidentally deleted public folder in laravel

Hi I was working on a project in Laravel using Backpack for my admin panel and today I deleted my project's public folder accidentally. Fortunately I had backup at my GitHub repository and I have copy pasted the public folder from there. But After…
-2
votes
1 answer

how to change the color of row or column in backpack dashboard?

This is my client admin panel What i want to do know when the expire month comes that column will become red automatically otherwise it stay green.
-3
votes
1 answer

Is it possible to prevent the time field to expect seconds in Laravel Backpack?

I'm working with Laravel Backpack and for a specific model I want the user to be able to add a "start time" using the time field type. I want the user to enter this format: hh:mm. While creating the entity it works fine. But in the edit mode the…
Alexander
  • 1
  • 1
1 2 3
56
57