I design do-engines — practical algorithms and systems that quietly get things done. Serial entrepreneur. Venture builder at RainMade.
Short profile: Sailing. Polyglot. Cosmopolitan. Foodie. Dev. Urban-mystic. Kriyavan. Maker. Steward.
<?php
namespace App\Http\Controllers;
use Illuminate\Support\Facades\Route;
## Working WYGIWYS editor examples for Livewire 2
As a reference for questions I've answered on Laracasts for how to get WYGIWYS editors working....
### Trix
```Blade
When I’ve got some time I like to read [Helpers](https://laravel.com/docs/9.x/helpers#main-content) and [Collections](https://laravel.com/docs/9.x/collections#main-content) in the laravel docs.
Partly because I’m a geek and partly because it seems like sometimes I don’t get it until I have a use case.
Recently I wanted to render a calendar. I found a use for two new methods `times()` which skips the need for collecting a range and `pad()` to continue rendering elements in a blade loop even when empty. Or in this first example. It let me create empty days for the start of the month (based on the day of week a month starts)...