Lumen Model Static Boot Method Not Working?

836 Views Asked by At

I am using lumen 5.6 and implementing global scopes for query builder and using the boot method to call the scope class. Can someone have an idea why protected static function boot() not working in lumen 5.6 Below is my code?

<?php

use App\Scopes\FilterSites;
use Illuminate\Database\Eloquent\Model;


class AccountTag extends Model {

var $useTable = 'tags_tbl';
var $primaryKey = 'tag_id';

protected static function boot()
{
    parent::boot();

    static::addGlobalScope(new FilterSites);
}
1

There are 1 best solutions below

2
On

Uncomment the line where $app->withEloquent(); is written in bootstrap/app.php. The withEloquent() method registers the DatabaseServiceProvider and bootstrap Eloquent ORM.

You can test that your global filter is applied by registering a route that returns the sql statement for selecting all items in the model.

In routes/web.php,

$router->get('/account-tags', function () {
    return App\AccountTag::toSql();
});

When you browse the endpoint, the returned query should have a where clause matching FilterSites