Skip to content
View webrobert's full-sized avatar
  • California, USA
  • 23:35 (UTC -07:00)

Block or report webrobert

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Maximum 250 characters. Please don't include any personal information such as legal names or email addresses. Markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse
webrobert/README.md

I started building websites in 1999. Image slices baby!

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.

Pinned Loading

  1. pantry pantry Public

    A simple shopping lists app to manage shared items across multiple lists (stores, etc)

    PHP 4

  2. A markdown driven Legal pages for my... A markdown driven Legal pages for my Laravel sites.
    1
    <?php
    2
    
                  
    3
    namespace App\Http\Controllers;
    4
    
                  
    5
    use Illuminate\Support\Facades\Route;
  3. wygiwys editor examples with laravel... wygiwys editor examples with laravel livewire
    1
    ## Working WYGIWYS editor examples for Livewire 2
    2
    As a reference for questions I've answered on Laracasts for how to get WYGIWYS editors working....
    3
    
                  
    4
    ### Trix
    5
    ```Blade
  4. Calendar with Carbon and pad() Calendar with Carbon and pad()
    1
    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. 
    2
    
                  
    3
    Partly because I’m a geek and partly because it seems like sometimes I don’t get it until I have a use case. 
    4
    
                  
    5
    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)...