Giter VIP home page Giter VIP logo

laravel-searchable's People

Contributors

dependabot[bot] avatar enricodelazzari avatar frestifo avatar github-actions[bot] avatar riccardodallavia avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

laravel-searchable's Issues

No results when many keys in scopeSearch function

Hello,

I've encountered a breaking problem when parsing more than 1000 id's trough the scopeSearch function in the HasSearch trait.
In the documentation of eloquent they are telling to use whereIntegerInRaw instead of whereIn in a query builder if there are many keys.

image

This is how I solved it. I've made a copy of the HasSearch trait and i'm using it like this now. I don't know if this is something that concerns you but it would be great if this package would be compatible with queries where many keys are used in the scopeSearch function.

With kind regards,

Rick

Integrity constraint violation: 1052 Column 'created_at' in order clause is ambiguous

Getting "Integrity constraint violation: 1052 Column 'created_at' in order clause is ambiguous" when trying to use search with belongsTo() relation

Laravel 8.41.0
PHP 8

Bellow is my model

class Transaction extends Model
{
use HasSearch;
use HasUser;
use HasFactory;

/**
 * Get the model's searchable attributes.
 *
 * @return array
 */
public function getSearchableAttributes(): array
{
    return [
        'type' => 2,
        'notes' => 10,
        'amount' => 9, 
        'customer.name', 
        'paymentType.name', 
    ];
}

/**
 * Get the Customer that owns the Transaction.
 */
public function customer()
{
    return $this->belongsTo(Customer::class)->withTrashed();
}

/**
 * Get the PaymentMethod that owns the Transaction.
 */
public function paymentType()
{
    return $this->belongsTo(PaymentType::class);
}

}

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.