Just added laravel query detector and followed all its prompts - noticeable performance improvement! Thank you so much for this! Reading the comments and I can see several other packages I am going to have to check out!
Thanks Povlas. Installed the debugbar and the query detector and one simple index page went from 130+ queries to 8. Thanks for your recommendations and all you do for Laravel community / developers..
@@yungifez It created the index of a business directory. It pulled in each category, how many sub categories, and the number of businesses in each. Easy problem to walk into with Laravel, but also very easy to solve!
That debugbar is a life saver! I had one query that took more than 20 seconds and I couldn't figure out why because I did all my with statements but there's a difference between doing the with filtering in the models VS in the with statements itself. Now it takes 180ms! I created my own package that just creates an admin account with default values or with env overrides, very useful when you're running migrate fresh many times in your development process.
Good one, but you need to mention the most powerfull package for me on every laravel project, which is Laravel Telescope :) it can be used to monitoring your project like Queue, Jobs, Request, Response and etc
The problem with Telescope Laravel Package is due to It save all info in database growing faster your size. Would be necessary create a cron job only to prune the database telescope records. Because of that, I prefer Clockwork Package. It has same resources, but It save the informations using json files that can be easily deleted.
The most useful package when you are working on a team is friendsofphp/php-cs-fixer This package can automatically fix the code style of your whole project with one command.
Hi Laravel Daily. Your videos are great, and they're very educational. I do have Laravel experience, but I can't seem to find any sort of beginner tutorials on your channels though. The main reason for me to look those up were to improve my code quality from the very basics, essentially. Maybe if you don't have those, it would be an idea to start from the beginner to give new Laravel programmers a great start to their code?
Thanks for this useful video, but for first problem "generat eloquent functions" you can add #query() function like this "User::query()->..."this function will generate eloquent :)
Thank you this is very helpful. The letter combination eu in the Dutch language is pronounced same as ö in German. So you almost got Barry's name right, but it was a very good attempt.
Very helpful video as always. Does N+1 query detector hamper the productivity with all those browser alerts? Is there a way for it to show helpful messages someplace else like browser console or integration with debugbar?
I'm a Java Dev and new to Laravel. I chose Laravel because PHP is easier to setup in my Web Hosting(due to limited Linux access). Laravel is very efficient in Scaffolding, but very easy to abuse. I love Laravel Daily(and learned most of the things here). But I notice that Logics are usually coded in the Controller, like other Laravel tutorials do. I've come from a practice where Controllers should only accept web request, then probably pre-handling and validation, then let another Service class do the rest. Like CRUD, and other complicated business rules stuff. I'm not sure if this pattern is actually a concern for PHP developers.
This is too individual to shoot videos about, depends on a lot of factors - your server stack, what your requests are actually doing, etc. For now, planning to shoot videos about coding, not about configuring servers.
Hi, I just watched your video. I would like to know if there is any equivalent to debugbar or query-detector when I fully work on an API ? I didn't find any solution to monitor queries when completely working by API. Keep going, love ur vids ;
Hello sir, We want a video about" how to cofigure a laravel project on shared hosting " I have research and saw some video, They told that move index file from public to root. But l think its not a good idea. And I believe yoi will tell us a best way to configure/upload laravel project on shared hosting. Please give this video as a next daily video.😍.. Please sir.
You are supposed to store all files in the root directory for security purposes. If not, you'll have to add a few lines to your .htaccess in order to prevent access into your .env since you'll be exposing it to the world by placing the project inside public_html. As far as file/folder structure, you can either tell Laravel to change from 'public' to 'public_html' or change your apache/nginx public's directory. This is something you'd have to configure on any web server for any PHP framework, not just Laravel...
You can but it's clunky. I was doing this until I switched to Clockwork. It works much better for API-driven projects, especially when you install the Chrome/Firefox extension.
my problem with ide helper models is that if i use it then phpstorm tells me on each model that "other declaration of class User exist at _ide_helper_models
From the laravel-ide-helper github page: "Alternatively using the --write-mixin (-M) option will only add a mixin tag to your Model file, writing the rest in (_ide_helper_models.php). The class name will be different from the model, avoiding the IDE duplicate annoyance."
I just tried to do the php artisan backup:run and I am getting a error: Backup failed because The dump process failed with exitcode 1 : General error : '"mysqldump"' is not recognized as an internal or external command, operable program or batch file.
Does that query detector package cause this error for anyone else? Illuminate\Container\Container::bind(): Argument #2 ($concrete) must be of type Closure|string|null
Hi May I check with u that if existing package failed to update, if failed then is it going to break application or its works with previous version. Please advice thank you
Im working with laravel about 2 years and i can tell that ide helper plugin/package is a horrible thing for development on my opinion. Maybe it will be useful for newbie
Just added laravel query detector and followed all its prompts - noticeable performance improvement! Thank you so much for this!
Reading the comments and I can see several other packages I am going to have to check out!
I think Laravel Telescope is very helpful package
yeah, for sure.
for multilingual project:
composer require astrotomic/laravel-translatable
composer require codezero/laravel-localized-routes
Thanks Povlas. Installed the debugbar and the query detector and one simple index page went from 130+ queries to 8. Thanks for your recommendations and all you do for Laravel community / developers..
🤣🤣
130+ queries
Damn what does it do
@@yungifez It created the index of a business directory. It pulled in each category, how many sub categories, and the number of businesses in each.
Easy problem to walk into with Laravel, but also very easy to solve!
@@liamvictor laravel job security 😂😂
That debugbar is a life saver!
I had one query that took more than 20 seconds and I couldn't figure out why because I did all my with statements but there's a difference between doing the with filtering in the models VS in the with statements itself.
Now it takes 180ms!
I created my own package that just creates an admin account with default values or with env overrides, very useful when you're running migrate fresh many times in your development process.
So which is the faster way?
@@HashimAziz1Let the database do whatever it can. Filtering in the database should be the fastest, i expect.
Good one, but you need to mention the most powerfull package for me on every laravel project, which is Laravel Telescope :)
it can be used to monitoring your project like Queue, Jobs, Request, Response and etc
The problem with Telescope Laravel Package is due to It save all info in database growing faster your size. Would be necessary create a cron job only to prune the database telescope records. Because of that, I prefer Clockwork Package. It has same resources, but It save the informations using json files that can be easily deleted.
Very helpful video sir. I was looking for Laravel DB backup, and I got from your video.
I would like to ask u about your thoughts on how to handle scalability with Laravel. I think is a good topic for a video.
I consider using Spatie Laravel-permission and Yajra Datatable package in every laravel project I am working on
4:47 alternatively, you can enable Model::preventLazyLoading() in your service provider if you're using Laravel 8+.
I also thought about it and replace laravel debugbar with clockwork. Debugbar is not for API Rest.
The most useful package when you are working on a team is
friendsofphp/php-cs-fixer
This package can automatically fix the code style of your whole project with one command.
Hi Povilas,
Thanks for the video. It's very helpful.
Hi Laravel Daily. Your videos are great, and they're very educational. I do have Laravel experience, but I can't seem to find any sort of beginner tutorials on your channels though. The main reason for me to look those up were to improve my code quality from the very basics, essentially. Maybe if you don't have those, it would be an idea to start from the beginner to give new Laravel programmers a great start to their code?
My tutorials are not for beginners, indeed.
I have basics in this free course: laraveldaily.teachable.com/p/laravel-for-beginners-your-first-project
Thanks for this useful video, but for first problem "generat eloquent functions" you can add #query() function like this "User::query()->..."this function will generate eloquent :)
Yes I agree with you. I do this too.
But you may consider using the package while working on old laravel project.
Thank you from Lagos, Nigeria
Thank you this is very helpful. The letter combination eu in the Dutch language is pronounced same as ö in German.
So you almost got Barry's name right, but it was a very good attempt.
Great Tips, Thankyou
Thank you from Alaska!
Great video! I'm definitely going to be trying these packages out.
Voyager is great too
Nice one, didn't know about Spatie\Backup, nice addition
Great video again. Thank you from Bishkek!
Very helpful video as always. Does N+1 query detector hamper the productivity with all those browser alerts? Is there a way for it to show helpful messages someplace else like browser console or integration with debugbar?
I think that's the whole point - to show it "in your face", so you would fix them immediately :) Otherwise, you can use Debugbar.
I'm a Java Dev and new to Laravel. I chose Laravel because PHP is easier to setup in my Web Hosting(due to limited Linux access). Laravel is very efficient in Scaffolding, but very easy to abuse. I love Laravel Daily(and learned most of the things here). But I notice that Logics are usually coded in the Controller, like other Laravel tutorials do. I've come from a practice where Controllers should only accept web request, then probably pre-handling and validation, then let another Service class do the rest. Like CRUD, and other complicated business rules stuff. I'm not sure if this pattern is actually a concern for PHP developers.
It is. You can read more about the Service Controller pattern in Laravel. There's a video on it on this channel
@@reubenfrimpong Thank you. Gonna check it out.
Great tips man.. I would love to have a video on processing thousands of requests per second in laravel and load balancing.. Hope to see this soon.
This is too individual to shoot videos about, depends on a lot of factors - your server stack, what your requests are actually doing, etc. For now, planning to shoot videos about coding, not about configuring servers.
Yet another very usefull review. Query detector is awesome. Thanks a lot!
Thanks for advice !
Hi,
I just watched your video. I would like to know if there is any equivalent to debugbar or query-detector when I fully work on an API ? I didn't find any solution to monitor queries when completely working by API.
Keep going, love ur vids ;
We've recently published this list of tools: laraveldaily.com/post/laravel-eloquent-tools-debug-slow-sql-queries
thanks for this article, im gonna try the first 3
This is really helpful
Spatie/backup: why, if you could configure unix cron to run at specified time abd put those files outside of the webserver directory?
Here I am always present with my daily LIKE to your video 👍
Hi :D Greetings from Poland once again :)
can laravel debug bar be used to measure API's performance or what tool can I use to measure laravel API performance
With the first ide helper I get the error in that any model is defined twice. but besides this nice selection .
Thanks , do u have advanced course on laravel relationships?
Yes, it's here: laraveldaily.teachable.com/p/laravel-eloquent-expert-level
Thanks as always!
Hello sir, We want a video about" how to cofigure a laravel project on shared hosting " I have research and saw some video, They told that move index file from public to root. But l think its not a good idea. And I believe yoi will tell us a best way to configure/upload laravel project on shared hosting. Please give this video as a next daily video.😍..
Please sir.
You are supposed to store all files in the root directory for security purposes. If not, you'll have to add a few lines to your .htaccess in order to prevent access into your .env since you'll be exposing it to the world by placing the project inside public_html. As far as file/folder structure, you can either tell Laravel to change from 'public' to 'public_html' or change your apache/nginx public's directory. This is something you'd have to configure on any web server for any PHP framework, not just Laravel...
@@JayP787 I have write some redirect code on root htaccess as well with help of the stackoverflow. But its not working for me.
Thanks for the video
I have VueJS separate frontend and connected to backend using api
how can i use Laravel debugbar ?
Use Laravel Telescope instead. Will probably shoot a separate video on it, probably.
Check out Clockwork
You can but it's clunky. I was doing this until I switched to Clockwork. It works much better for API-driven projects, especially when you install the Chrome/Firefox extension.
@@LaravelDaily Thank you I tried it and it is awesome
@@GraxS thank you for the suggestion
my problem with ide helper models is that if i use it then phpstorm tells me on each model that "other declaration of class User exist at _ide_helper_models
From the laravel-ide-helper github page: "Alternatively using the --write-mixin (-M) option will only add a mixin tag to your Model file, writing the rest in (_ide_helper_models.php). The class name will be different from the model, avoiding the IDE duplicate annoyance."
@@lubje thank you
What are your thoughts on Laravel sentry?
Sentry.io? Good thoughts!
Awesome vídeo!
very good! tks
Thank you Sir
Good luck
Thank you!
Thanks. Very helpful. But where do you configure or specify the external server to backup to?
In config/filesystems.php as a disk
can you make video using react with laravel?
Nice. thanks for the infos
I just use laravel/telescope instead of debugbar, so able to check queries in remote staging
also i use fruitcake/laravel-telescope-toolbar that uses telescope result,
Thank You!
N+1 looks quit interesting thanks
I just tried to do the php artisan backup:run and I am getting a error: Backup failed because The dump process failed with exitcode 1 : General error : '"mysqldump"' is not recognized as an internal or external command,
operable program or batch file.
Does that query detector package cause this error for anyone else? Illuminate\Container\Container::bind(): Argument #2 ($concrete) must be of type Closure|string|null
Can you please make a video in how to count all current online users in the site, and show it as a number?
I would use Google Analytics for that.
What about L5moduler?
Hi May I check with u that if existing package failed to update, if failed then is it going to break application or its works with previous version. Please advice thank you
Depends on the package and the situation.
Tip for video: Why do you prefer debugbar instead of telescope + laravel-telescope-toolbar?
Why do you prefer telescope + laravel-telescope-toolbar instead of Clockwork + Clockwork Chrome/Firefox extension? ;-)
Thank you big ):
Very helpful Thx Povilas
Thanks sir
Clockwork
धन्यवाद श्रीमान
what about managing email?
great! bro
spatie media-library
terima kasih
Does this work with sublime text?
Not sure, please try and tell us all.
Don't know if anyone else ahs the same issue but currently for me Laravel debug bar breaks my ajax, has happened on widnows and ubuntu for me
Laravel telescope is the most needed package.
Great job! Please make a tutorial on how to web scrape SPA like Amazon, thanks.
You forgot Magic Test 😝
how install old version laravel(like 5.5) in mac m1
use docker if you coudnt get version you want, it can be help
How to solve that "Not enough memory resources are available to process this command" While installing packages
Increase memory_limit in your php.ini
Laravel IDE Helper
Laravel debugbar
Laravel n+1 query detector
Spatie laravel backup
Im working with laravel about 2 years and i can tell that ide helper plugin/package is a horrible thing for development on my opinion. Maybe it will be useful for newbie
like me :D but thanks u sir
Thank you for the info.
Thanks sir