Overview for 'pascalbaljetmedia'
Written by Pascal Baljet Media - Blog
/ Original link
on Aug. 9, 2020
The next version of the Laravel framework, version 8.0, is planned for September 8th. It's packed with new features and improvements! As we're getting close to the release, it becomes clearer which PRs got merged. Some of the new stuff will be unveiled later on, probably at Laracon in late August.…
Written by Pascal Baljet Media - Blog
/ Original link
on Jul. 14, 2020
There are many ways to add search functionality to your Laravel project. You can use the Query Builder, use the official Scout package to integrate with Algolia or use a third-party package like Spatie's laravel-searchable. Today we're introducing a new package to perform cross model, in-database…
Written by Pascal Baljet Media - Blog
/ Original link
on May. 26, 2020
In the Laravel 5.1 days, we got involved in completing the development of a video platform. It already had a lot of custom FFMpeg code, but there was no abstraction or testing, and it wasn't developer-friendly. We learned a lot, however. There was a great PHP-FFMpeg package out there, and the FFMpe…
Written by Pascal Baljet Media - Blog
/ Original link
on May. 7, 2020
Yesterday I posted a tweet about a Google Analytics implementation I was working on. It was based on a Event/Listener solution using Laravel. The tweet quickly gained traction and one day later it was liked more than 170 times and I was encouraged to build a package out of it! Here we are, introduc…
Written by Pascal Baljet Media - Blog
/ Original link
on Jan. 22, 2020
We are just a few weeks away from the Laravel 7 release, so I've put together a list of some important new features and changes. Of course this is not everything but it is a brief overview of some of the new stuff. Add "subquery value" where statement support to the query builder Add Collection::so…
Written by Pascal Baljet Media - Blog
/ Original link
on Dec. 31, 2019
The Laravel framework has a built-in Email Verification feature that allows a user to verify its email address. It also comes with a Middleware that protects routes against unverified users. Resetting Passwords require a database table to store the reset tokens, but for Email Verification an approa…