File manager - Edit - /home/linknsbh/cecil-hotel.net/vendor/botble/platform/base/src/Helpers/ChartHelper.php
Back
<?php namespace Botble\Base\Helpers; use Carbon\Carbon; use Exception; use Illuminate\Support\Facades\Validator; class ChartHelper { public static function getDateRange(): array { $request = app('request'); $now = Carbon::now(); $validator = Validator::make($request->only(['date_from', 'date_to']), [ 'date_from' => 'nullable|date', 'date_to' => 'nullable|date', ]); if ($validator->fails()) { return [$now, $now]; } $startDate = Carbon::now()->subDays(29); $endDate = Carbon::now(); if ($dateFrom = $request->input('date_from')) { $now = Carbon::now(); try { $startDate = $now->createFromFormat('Y-m-d', $dateFrom); } catch (Exception) { $startDate = $now->subDays(29); } } if ($dateTo = $request->input('date_to')) { $now = Carbon::now(); try { $endDate = $now->createFromFormat('Y-m-d', $dateTo); } catch (Exception) { $endDate = $now; } } if ($endDate->gt($now)) { $endDate = $now; } if ($startDate->gt($endDate)) { $startDate = $now->subDays(29); } return [$startDate, $endDate]; } }
| ver. 1.4 |
Github
|
.
| PHP 8.2.31 | Generation time: 0.81 |
proxy
|
phpinfo
|
Settings