Lumen Model Static Boot Method Not Working?










0















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 AppScopesFilterSites;
use IlluminateDatabaseEloquentModel;


class AccountTag extends Model {

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

protected static function boot()

parent::boot();

static::addGlobalScope(new FilterSites);










share|improve this question


























    0















    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 AppScopesFilterSites;
    use IlluminateDatabaseEloquentModel;


    class AccountTag extends Model {

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

    protected static function boot()

    parent::boot();

    static::addGlobalScope(new FilterSites);










    share|improve this question
























      0












      0








      0








      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 AppScopesFilterSites;
      use IlluminateDatabaseEloquentModel;


      class AccountTag extends Model {

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

      protected static function boot()

      parent::boot();

      static::addGlobalScope(new FilterSites);










      share|improve this question














      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 AppScopesFilterSites;
      use IlluminateDatabaseEloquentModel;


      class AccountTag extends Model {

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

      protected static function boot()

      parent::boot();

      static::addGlobalScope(new FilterSites);







      php lumen-5.4






      share|improve this question













      share|improve this question











      share|improve this question




      share|improve this question










      asked Nov 14 '18 at 18:21









      Hassan RazaHassan Raza

      329316




      329316






















          1 Answer
          1






          active

          oldest

          votes


















          0















          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 AppAccountTag::toSql();
          );


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






          share|improve this answer

























          • I register that in /bootstrap/app.php can you please tell me how I can use this in my model. And after doing that will my boot method will work or not?

            – Hassan Raza
            Nov 15 '18 at 13:52











          • Please see updated answer. You only need to uncomment the $app->withEloquent() line in /bootstrap/app.php and you should be good to go with the globalScope registered in the AccountTag model.

            – Oluwafemi Sule
            Nov 15 '18 at 22:21










          Your Answer






          StackExchange.ifUsing("editor", function ()
          StackExchange.using("externalEditor", function ()
          StackExchange.using("snippets", function ()
          StackExchange.snippets.init();
          );
          );
          , "code-snippets");

          StackExchange.ready(function()
          var channelOptions =
          tags: "".split(" "),
          id: "1"
          ;
          initTagRenderer("".split(" "), "".split(" "), channelOptions);

          StackExchange.using("externalEditor", function()
          // Have to fire editor after snippets, if snippets enabled
          if (StackExchange.settings.snippets.snippetsEnabled)
          StackExchange.using("snippets", function()
          createEditor();
          );

          else
          createEditor();

          );

          function createEditor()
          StackExchange.prepareEditor(
          heartbeatType: 'answer',
          autoActivateHeartbeat: false,
          convertImagesToLinks: true,
          noModals: true,
          showLowRepImageUploadWarning: true,
          reputationToPostImages: 10,
          bindNavPrevention: true,
          postfix: "",
          imageUploader:
          brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
          contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
          allowUrls: true
          ,
          onDemand: true,
          discardSelector: ".discard-answer"
          ,immediatelyShowMarkdownHelp:true
          );



          );













          draft saved

          draft discarded


















          StackExchange.ready(
          function ()
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53306522%2flumen-model-static-boot-method-not-working%23new-answer', 'question_page');

          );

          Post as a guest















          Required, but never shown

























          1 Answer
          1






          active

          oldest

          votes








          1 Answer
          1






          active

          oldest

          votes









          active

          oldest

          votes






          active

          oldest

          votes









          0















          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 AppAccountTag::toSql();
          );


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






          share|improve this answer

























          • I register that in /bootstrap/app.php can you please tell me how I can use this in my model. And after doing that will my boot method will work or not?

            – Hassan Raza
            Nov 15 '18 at 13:52











          • Please see updated answer. You only need to uncomment the $app->withEloquent() line in /bootstrap/app.php and you should be good to go with the globalScope registered in the AccountTag model.

            – Oluwafemi Sule
            Nov 15 '18 at 22:21















          0















          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 AppAccountTag::toSql();
          );


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






          share|improve this answer

























          • I register that in /bootstrap/app.php can you please tell me how I can use this in my model. And after doing that will my boot method will work or not?

            – Hassan Raza
            Nov 15 '18 at 13:52











          • Please see updated answer. You only need to uncomment the $app->withEloquent() line in /bootstrap/app.php and you should be good to go with the globalScope registered in the AccountTag model.

            – Oluwafemi Sule
            Nov 15 '18 at 22:21













          0












          0








          0








          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 AppAccountTag::toSql();
          );


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






          share|improve this answer
















          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 AppAccountTag::toSql();
          );


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







          share|improve this answer














          share|improve this answer



          share|improve this answer








          edited Nov 15 '18 at 22:19

























          answered Nov 14 '18 at 19:14









          Oluwafemi SuleOluwafemi Sule

          11.7k1532




          11.7k1532












          • I register that in /bootstrap/app.php can you please tell me how I can use this in my model. And after doing that will my boot method will work or not?

            – Hassan Raza
            Nov 15 '18 at 13:52











          • Please see updated answer. You only need to uncomment the $app->withEloquent() line in /bootstrap/app.php and you should be good to go with the globalScope registered in the AccountTag model.

            – Oluwafemi Sule
            Nov 15 '18 at 22:21

















          • I register that in /bootstrap/app.php can you please tell me how I can use this in my model. And after doing that will my boot method will work or not?

            – Hassan Raza
            Nov 15 '18 at 13:52











          • Please see updated answer. You only need to uncomment the $app->withEloquent() line in /bootstrap/app.php and you should be good to go with the globalScope registered in the AccountTag model.

            – Oluwafemi Sule
            Nov 15 '18 at 22:21
















          I register that in /bootstrap/app.php can you please tell me how I can use this in my model. And after doing that will my boot method will work or not?

          – Hassan Raza
          Nov 15 '18 at 13:52





          I register that in /bootstrap/app.php can you please tell me how I can use this in my model. And after doing that will my boot method will work or not?

          – Hassan Raza
          Nov 15 '18 at 13:52













          Please see updated answer. You only need to uncomment the $app->withEloquent() line in /bootstrap/app.php and you should be good to go with the globalScope registered in the AccountTag model.

          – Oluwafemi Sule
          Nov 15 '18 at 22:21





          Please see updated answer. You only need to uncomment the $app->withEloquent() line in /bootstrap/app.php and you should be good to go with the globalScope registered in the AccountTag model.

          – Oluwafemi Sule
          Nov 15 '18 at 22:21



















          draft saved

          draft discarded
















































          Thanks for contributing an answer to Stack Overflow!


          • Please be sure to answer the question. Provide details and share your research!

          But avoid


          • Asking for help, clarification, or responding to other answers.

          • Making statements based on opinion; back them up with references or personal experience.

          To learn more, see our tips on writing great answers.




          draft saved


          draft discarded














          StackExchange.ready(
          function ()
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53306522%2flumen-model-static-boot-method-not-working%23new-answer', 'question_page');

          );

          Post as a guest















          Required, but never shown





















































          Required, but never shown














          Required, but never shown












          Required, but never shown







          Required, but never shown

































          Required, but never shown














          Required, but never shown












          Required, but never shown







          Required, but never shown







          Popular posts from this blog

          Top Tejano songwriter Luis Silva dead of heart attack at 64

          ReactJS Fetched API data displays live - need Data displayed static

          Evgeni Malkin