Lae/app/Helpers.php

9 lines
109 B
PHP
Raw Normal View History

2022-09-08 16:12:02 +00:00
<?php
use Illuminate\Support\Carbon;
function now($timezone = null)
{
return Carbon::now($timezone);
}