abdulkhan wrote a comment+100 XP
3mos ago
abdulkhan liked a comment+100 XP
5mos ago
Might be worth a mention, that if you want immutable dates across the entire project, regardless of model casting, even from now(), today() and other helper functions without calling ->toImmutable(), you can add this in AppServiceProvider
use Carbon\CarbonImmutable;
use Illuminate\Support\Facades\Date;
Date::use(CarbonImmutable::class);