Skip to content

Instantly share code, notes, and snippets.

@jakewtaylor
Created March 6, 2019 10:07
<?php
/*
* This will still be mutable
*/
use Carbon\Carbon;
$date = Carbon::now();
/*
* This will also still be mutable - it's just an alias Laravel provides
*/
use Illuminate\Support\Carbon;
$date = Carbon::now();
/*
* This will get us an immutable date object
*/
use Illuminate\Support\Facades\Date;
$date = Date::now();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment