Latest Laravel/PHP Articles

Latest Laravel/PHP Articles curated daily from around the web.


In addition to @can Blade directive, did you know you can check multiple permissions at once with @canany directive? @canany(['update', 'view', 'delete'], $post...
Let's get started quickly I found new things in Laravel 9.22 Released I wanted to share with you. Fluent file validation rule https://github.com/laravel/framewo...
Scout APM helps PHP developers pinpoint N+1 queries, memory leaks & more so you can troubleshoot fast & get back to coding faster. I just released a video about...
CodeMentor Codementor is an online marketplace connecting developers with experts for on- demand 1:1 help via screen sharing, video, and text chat.
In this tutorial we will see the use of Eloquent Pluck method to fetch specific key values from model and populate values into Select box. pluck() method is for...
https://dev.to/krixnaas #install-xdebug Install xDebug sudo apt-get install php-xdebug; or specify the version sudo apt-get install php7.4-xdebug; #initialize-p...

matthiasnoback.nl

My book-writing workflow
By request: what's my workflow for writing books? A long time ago I noticed that testing-advocate Chris Hartjes published his books on https://leanpub.com. ...
This is not a long lists of whats and what-not-to-do when using the forloop syntax in php. It's just a tip I got from official php doc. For the following exampl...
CodeMentor Codementor is an online marketplace connecting developers with experts for on- demand 1:1 help via screen sharing, video, and text chat.
While working on a team consisting of multiple developers, it's really important to have a predefined set of rules about different aspects of the project. Wheth...
https://ohdear.app is the all-in-one monitoring tool for your entire website. We monitor uptime, SSL certificates, broken links, scheduled tasks and more.
Laravel DB Sync is an awesome package that let you sync a remote database to a local database in Laravel. You can install this package via composer: composer re...
Laravel Soulbscription is a fantastic package that provides a straightforward interface to handle subscriptions and feature consumption. The package migrations...
Fathom Analytics | Fast, simple and privacy-focused website analytics. Fathom Analytics | Fast, simple and privacy-focused website analytics.
Here we will see how we can add a new attribute in an eloquent model. Sometimes When converting models to arrays or JSON,we require additional information based...
https://ohdear.app is the all-in-one monitoring tool for your entire website. We monitor uptime, SSL certificates, broken links, scheduled tasks and more.

matthiasnoback.nl

When to use a trait?
If you want to reuse some code between multiple classes, using a trait is an alternative for extending the class. In that case the trait may be the better optio...
https://laravel.com/docs/9.x/migrations in Laravel provide a convenient way to interact with the database and help us properly structure our database, so workin...