Skip to content

Instantly share code, notes, and snippets.

View epalmans's full-sized avatar

Eddie Palmans epalmans

View GitHub Profile
@epalmans
epalmans / keybase.md
Created January 18, 2022 11:56
Keybase proof

Keybase proof

I hereby claim:

  • I am epalmans on github.
  • I am eddiepalmans (https://keybase.io/eddiepalmans) on keybase.
  • I have a public key whose fingerprint is 595D 3802 11C6 5BD4 E241 6A19 1127 F890 74E1 5EDC

To claim this, I am signing this object:

@epalmans
epalmans / Laracon_Online_2020.ics
Created January 22, 2020 16:12
Laracon Online 2020 iCal
BEGIN:VCALENDAR
VERSION:2.0
X-WR-CALNAME:Laracon Online 2020
CALSCALE:GREGORIAN
BEGIN:VTIMEZONE
TZID:America/New_York
TZURL:http://tzurl.org/zoneinfo-outlook/America/New_York
X-LIC-LOCATION:America/New_York
BEGIN:DAYLIGHT
TZOFFSETFROM:-0500
@epalmans
epalmans / TransformValidatedDates.php
Last active August 28, 2019 13:43
Trait to map validated dates from Laravel FormRequest to Carbon instances
<?php
namespace App\Traits;
use Illuminate\Support\Arr;
use Illuminate\Support\Str;
use Illuminate\Support\Carbon;
trait TransformValidatedDates
{