kharanenka / laravel-scope-date
Scope for date field (Carbon)
Installs: 31 710
Dependents: 1
Suggesters: 0
Security: 0
Stars: 1
Watchers: 2
Forks: 0
Open Issues: 0
Requires
- php: >=5.6
This package is auto-updated.
Last update: 2024-10-29 05:04:46 UTC
README
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.*"
Usage
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');