Dries Vints has created a new package to easily make use of Hero icons in your Laravel Blade views. " "" "> " "";">By far my most favorite addition to Laravel 7 are the new Blade components. There’s all kinds of cool things you can do with them so I thought I’d share some of them with...
03 February, 2022
Class-Based Factories with Laravel Poser
Programing Coderfunda
February 03, 2022
Laravel, Packages, php
No comments
With Laravel Poser, you can “create class-based model factories in Laravel applications in seconds.” This package works by creating factory classes by hand or using the artisan make:poser command:1namespace Tests\Factories;2 3use Lukeraymonddowning\Poser\Factory;4 5class UserFactory extends Factory {}Here’s a basic example...