We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
This wonderful package (thank you!) adds something like the following if I have a date column on my model:
date
@method static \Illuminate\Database\Eloquent\Builder<static>|Invoice whereDate($value)
However, whereDate is a Laravel method on Illuminate\Database\Query\Builder. Thus, it won't work to do something like this:
whereDate
Illuminate\Database\Query\Builder
$invoice->whereDate(Date::today())->first();
We should exclude these methods:
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Versions:
Description:
This wonderful package (thank you!) adds something like the following if I have a
date
column on my model:However,
whereDate
is a Laravel method onIlluminate\Database\Query\Builder
. Thus, it won't work to do something like this:We should exclude these methods:
The text was updated successfully, but these errors were encountered: