Laravel debugger duplicate queries - laravel

I am a newbie at Laravel and trying to figure out Laravel 4.2 and sentry 2.1. Also I am using laravel debugger by https://github.com/barryvdh/laravel-debugbar . While debugging after user logs in I get a 6 queries and a message like this:
So I am not sure why is the second query duplicated, does maybe anyone has experience with this? I googled the problem but no answer.

I made a deeper search and found that was a bug in sentry 2.1 and planned to be fixed in next version, probably sentinel. https://github.com/cartalyst/sentry/issues/269

Related

Laravel Odoo API

I have been using Edujugon/laradoo for interfacing Laravel with Odoo. In a new project I have been using Laravel 9 and Edjugon/Laradoo does not install anymore.
Can somebody help me by updating Edjugon/Laradoo since the composer setting do not fit anymore with laravel 9. I am not enough of an expert to do that myself. The goal is a successful composer require in Laravel 9. I contacted the author but he seems to be not active anymore.
I found a different solution: tbondois/odoo-ripcord. It is not as elegant as Edjugon/laradoo but it does the work.

Route not defined using Laravel MVC PHP Storm

enter image description here
I get this error in PHP storm. I am learning Laravel and can someone please help me with this error. The route is not defined.
Please see the attached screenshot.
No worries. Php-storm doesn't see some of the laravel facades static classes. (e.g. 'Route::', 'Auth::'). Your code will still run fine (provided there aren't any real problems).
PS - If you haven't done it yet, install the phpstorm laravel plugin. It will help eliminate some of these issues (but not all).
Have fun!

Algolia Hosts unreachable

Hello I am using algolia for search on my laravel project. It was working good but now when i search for content it display error. I also tried for composer update, but it is not allowing me to update. i am attaching screenshots of error when i search for content and composer update issue. Check this image
and this as well
I know its an old topic but I'm sharing my experience here. It my help others.
This issue also occurs when ALGOLIA_APP_ID is not properly set up. Usually people use wrong APP ID from algolia dashboard so make sure to use the correct APP ID as shown in the following image.
It shouldn't be taking 1 second to resolve the host, so I recommend you to check your DNS settings or your Internet connection.
But anyway, if you still want to have longer timeouts all you need to do is configure it: https://www.algolia.com/doc/api-reference/api-methods/configuring-timeouts/#methods

Customizing the paginator view in Laravel 5.2

I've been reading the docs and set up a basic app.
Every issue I've had before I've been able to solve by looking in the docs and occasionally using Google, however I can't figure this one out.
I'm using Laravel version 5.2.43 and the Paginator works fine.
I use it in my view like this,
$data->links()
But now I would like to customize the look of the paginator.
So I tried running this command
php artisan vendor:publish --tag=laravel-pagination
In the hopes of simply being able to customize that view instead of creating a new one all over but that command didn't work, it just said
Nothing to publish for tag [laravel-pagination]
So, instead I did this.
{{ $data->links('folder.viewName') }}
But this command gives me this error,
Argument 1 passed to Illuminate\Pagination\LengthAwarePaginator::links() must be an instance of Illuminate\Contracts\Pagination\Presenter, string given
So I'm not sure what's going on. The pagination works but I can't set the view myself.
Any thoughts on what's going on here?
Any help would be greatly appreciated.
I believe you can't do this in Laravel 5.2 without "hacking" the framework. Fortunately, Laravel 5.3 is released this week and it features custom pagination views
Custom pagination in Laravel 5.3
So it turns out I've been reading the 5.3 documentation for Laravel all this time. Which explains a lot of things...
So when 5.3 comes out we can do
$paginator->links("myOwnView")
Until then, I've done it the manual way of using the instances inside the paginator object.

Laravel 5.0, 5.1, 5.2 changes

I am new to Laravel. I have version 5.2 running on my local development machine and also deployed to shard hosting account. There is so much information available, but so many things have changed with 5.0, 5.1, and 5.2 (and I guess 5.3 soon, too).
Can anyone recommend the best place to go for a detailed list of the changes and differences between these versions? The release notes don't really seem to cover the detail that I need.
For example, I got bogged down by the fact that the lists() method used to return an array, but now it returns a collection so you have to do a lists()->all(). This is just one example of the things that have tripped me up as I'm building my first Laravel application. Thanks!
All changes in each Version are very well documented in the Laravel Upgrade Guide.
Just make sure to read the Docs carefully.
Go to Laravel official documentation page and go to sub category you need to search. Then go with different versions. This will give you a clear idea.

Resources