Lae/app/Helpers.php

23 lines
467 B
PHP
Raw Normal View History

2022-09-08 16:12:02 +00:00
<?php
use Illuminate\Support\Carbon;
2022-09-09 13:04:09 +00:00
use Illuminate\Support\Facades\Cache;
2022-09-08 16:12:02 +00:00
function now($timezone = null)
{
return Carbon::now($timezone);
}
2022-10-29 05:53:32 +00:00
// function nodes()
// {
// return Cache::remember('nodes', 60, function () {
// $collection = collect(['taylor', 'abigail', null])->map(function ($name) {
// return strtoupper($name);
// })->reject(function ($name) {
// return empty($name);
// });
// });
// }