| Package Data | |
|---|---|
| Maintainer Username: | Andrey Kharanenka |
| Maintainer Contact: | kharanenka@gmail.com (Andrey Kharanenka) |
| Package Create Date: | 2016-11-12 |
| Package Last Update: | 2016-11-12 |
| Language: | PHP |
| License: | GPL-3.0 |
| Last Refreshed: | 2025-10-31 03:04:41 |
| Package Statistics | |
|---|---|
| Total Downloads: | 37,704 |
| Monthly Downloads: | 498 |
| Daily Downloads: | 21 |
| Total Stars: | 1 |
| Total Watchers: | 1 |
| Total Forks: | 0 |
| Total Open Issues: | 0 |
You can use trait in your models with date field (Carbon)
#Installation
Require this package in your composer.json and update composer.
"kharanenka/laravel-scope-date": "1.0.*"
class MyModel extend Model {
use Kharanenka\Scope\DateField;
...
}
$obElement = MyModel::getByDateValue('created_at', '2016-02-06', '>=')->first();
$sDate = $obElement->getDateValue('created_at', 'd.m.Y');