Laracon Online is returning on September 14th, 2022, and will continue to be streamed free for everyone on YouTube!This event will feature the following speaking slots:Eight main presentations that are 40 minutes.Four lightning talks that are 15 minutes.If you'd like to share your knowledge with 30,000+ fellow, Laravel developers submit...
17 October, 2022
Statix Server is an Object-oriented Wrapper for PHP's Built-in Server
Programing Coderfunda
October 17, 2022
Laravel, php
No comments
Statix Server is an object-oriented wrapper around PHP's built-in server. Once you install the composer package, getting started is as minimal as the following:1use Statix\Server\Server;2 3require_once './vendor/autoload.php';4 5Server::new()->start();6 7// or8(new Server)->start();The server class has an array-based...
Learn PestPHP From Scratch
Programing Coderfunda
October 17, 2022
Laravel, php
No comments
Pest From Scratch is a free video course from Laracasts. Luke Downing walks you through the setup to becoming proficient with Pest PHP.This course is 100% free (it doesn't even require signup) and includes eight episodes that cover installation through more advanced features:Installation and SetupLifecycle HooksExpectationsExpectations++DatasetsCombined...
Heroicons 2.0 are here
Programing Coderfunda
October 17, 2022
Laravel, php
No comments
The makers of Tailwind CSS released Heroicons 2.0, a set of 264 hand-crafted SVG icons for the web. These icons are redrawn from scratch and feature a 24px solid set:You can either copy the SVG straight from the Heroicons website into your project, or use the first-party React and Vue libraries: 1// React JS - npm install @heroicons/react...