Skip to main content
0 votes
0 answers
24 views

so I'm building a way to organize Items based on different requests: $items = Item::query() ->where("type", $itemType) ->when($mode, function (Builder $query, $...
ThePlayerRolo's user avatar
-1 votes
0 answers
32 views

I have problem with all Inertia projects. When the user opens the page from their browser history it opens a JSON not a React page. How can I prevent this? I have: "dependencies": { &...
ibrahim elshorbagy's user avatar
0 votes
0 answers
34 views

I'm trying to dynamically load only specific icons from the lucide-vue-next package in my vue page, however it's not wanting to work. I'm using Laravel 12 (Latest), Vue3 (Latest shipped with Laravel), ...
Jon's user avatar
  • 395
2 votes
1 answer
63 views

Currently the app has 2 entry points for the JS and CSS files in the blade layout file: {{-- layout.blade.php --}} <head> <meta charset="utf-8" /> <meta name="...
pileup's user avatar
  • 3,472
2 votes
0 answers
50 views

I have a test which has a setup function that would call Storage::fake() function like so : public function setUp() { parent::setUp(); Storage::fake('public'); } All the tests post an image that ...
Ikhwanu Robik's user avatar
0 votes
0 answers
28 views

I have the following query: $countries = Country::with('place.details')->get(); My website is timing out running this query, even when I set the timeout to 10+ minutes. I discovered that if I ...
user5893820's user avatar
2 votes
1 answer
46 views

I'm trying to define a Laravel Eloquent model with a custom scope that filters categories by a related product's vendor_id. Here's my setup: class Category extends Model { public function ...
melkmeshi's user avatar
0 votes
1 answer
37 views

Fail on save record on a modal in button action at header of infolist - filament laravel I have a page view AgendamentoView. That display infolist of an Agendamento (schedule). Each schedule have one ...
Rafael Laube's user avatar
0 votes
0 answers
81 views

I got a Laravel App running on an Apache server. I've configured VirtualHost to locally access the app with URL: https://www.infoalquiler.com.ar/ Despite the app is working properly, I'm getting a &...
Leandro Caplan's user avatar
1 vote
1 answer
57 views

In laravel 11 app using spatie/image "^3.8" and spatie/laravel-medialibrary "^11.12" I need to get all properties of image and I do use Spatie\Image\Image; ... $itemMedia = $...
mstdmstd's user avatar
  • 3,321
0 votes
1 answer
97 views

I'm working with Laravel 12 (with Breeze), VueJS, Debugbar, all in their newest versions. My server is running locally on my MacBook, and developing on this MacBook works fine. The app works correctly ...
Dave33's user avatar
  • 485
0 votes
2 answers
53 views

By default, Laravel's email validation does not fail on invalid email, eg 'example@example'. $data = ['email' => 'example@example']; $rules = ['email' => 'email']; $v = Validator::make($data, $...
JohnSmith's user avatar
  • 506
-1 votes
0 answers
91 views

I have a route which I wish to protect with a token, using Sanctum. The offending route is /status, which would be accessed by /api/status. The /foo route works fine, there is only a problem when ...
Kevin Waterson's user avatar
1 vote
1 answer
92 views

Here's my laravel composer.json for its version info: { "name": "laravel/laravel", "type": "project", "description": "The skeleton ...
Evan Fersadi's user avatar
2 votes
2 answers
105 views

I encountered an issue while working on a Laravel project of mine, intended for property rentals. In the database, both the property owner’s and the tenant’s contact information are stored in the same ...
Leandro Caplan's user avatar

15 30 50 per page
1
2 3 4 5
14179