With the release of PestPHP v2, we can now test the architecture of our applications. In this tutorial, we will walk through how to use this plugin.It starts with creating an ArchTest.php file under tests/Feature in our application. From here, we can begin documenting our architectural requirements and rules - allowing us...
29 March, 2023
Programing Coderfunda
March 29, 2023
No comments
Laravel Ciphersweet is a package by Spatie
Programing Coderfunda
March 29, 2023
No comments
27 March, 2023
Laravel 10.4 Released
Programing Coderfunda
March 27, 2023
Laravel, Laravel-News
No comments
The Laravel team released 10.4 with a File::json() method, converting existing HasMany relationships to a HasOne relationship, a new test response assertion, and more.File::json() methodAustin White contributed a File::json() method as a convenience for getting JSON encoded data from a file:// Before$contents = File::get('sample.json');$data...