I have the following query in mysql select count(*) as aggregate from `promotions` where `supplier_id` = 1 and '2022-03-27' <= promotions.to AND '2022-04-27'
I have search input in my products page. I can search on name on description and on category if I type the id but that's not really practical how i change this
I tried to create a relationship in Laravel for this, Expense has May ExpensesItem Expense has One ExpensesCategory But I could not create a relationship betwee
This error suddenly appears out of nowhere. i tried reinstalling the npm packages but it doesn't work. but when it works when i create a fresh project of jetstr
i have table schema in mysql for my project. this project build with laravel and as you can see in the below image i want to fillter all row with the same store
I've been looking around for a fix but couldn't find it. The situation: Resources are connected to an Event, multiple resources can be connected to multiple eve
When running composer install in production I get a new error message today: $ composer install Installing dependencies from lock file (including require-dev) V
I have a doubt here regarding changing data in two tables in public function editar_perfil(Request $request, funcionario $item){ $item->nome = $re
I implement the InlineCreate Operation in Backpack for Laravel and works fine, but my field depend of other field and I can't to get the parent field informati
my problem is that when i tap rfid to scanner it appears on serial monitor Valet - Not found. this is a picture when i tap the rfid card and an error appears on
I am trying to use a single select request to retrieve data from database based on the search term "name" and populate my input fields using select2 so that i d
I have controller with request like below $product = $request->product; //array $product_category = $request->product; if($request->filled('product'))
I am using matwebsite Laravel excel to do some updates in existing excel and export. I am using beforeExport method to do some updates in the excel. when i prov
I am using Laravel 8 with Livewire and am displaying a Mapbox map in my page. When I click on the map, I am getting the coordinates of the click and placing a m
So I am using Wasabi for object storage in my Laravel API, but after I got the upload working, now I can't get the download to work. I am using this package: ht
How to make a orm query with a string User class User extends Authenticatable { use HasApiTokens, HasFactory, Notifiable, SoftDeletes, HasRoles; public
How can i get the values from nouislider in livewire? So i can compare the min and max price. I don't see how i can get the values. It has 2 handles a min and m
SQLSTATE[HY000] [1049] Unknown database 'laravel' (SQL: select * from information_schema.tables where table_schema = laravel and table_name = migrations and ta
class Products extends Controller { public function index() { $products = DB::table('product')->get(); return view("product", compact('pr
My laravel framework version is on 8.83.12 I am trying to build a form that creates a database entry based on Vehicle data, Make, Model, Version.. etc. My Model