Unable to display database table values on frontend in magento 2.1.7 The 2019 Stack Overflow Developer Survey Results Are InI just can't tell what is wrong with this Model code that save() is raising an exception.||Varien Data collection toOptionArray does not pass arguments to protected method?Magento 2: Duplicate key-sequence unique identity-constraint 'uniqueVirtualType' fatal error while di:compileCall to undefined method on custom collection Resource ModelModel class not found in …/magento/framework/ObjectManager/Factory/AbstractFactory.php:93Magento 2.1.6 Cannot save shipmentGet item collection by sku Magento 2Magento 2: toolbar url problems in custom module with custom routerMagento 2: How to override model resource configurable fileunable to solve the error in magento2

Does a dangling wire really electrocute me if I'm standing in water?

Geography at the pixel level

Did Section 31 appear in Star Trek: The Next Generation?

What are the motivations for publishing new editions of an existing textbook, beyond new discoveries in a field?

Can one be advised by a professor who is very far away?

Deal with toxic manager when you can't quit

"as much details as you can remember"

Shouldn't "much" here be used instead of "more"?

Did 3000BC Egyptians use meteoric iron weapons?

Output the Arecibo Message

What tool would a Roman-age civilization have for the breaking of silver and other metals into dust?

Does the shape of a die affect the probability of a number being rolled?

How to deal with fear of taking dependencies

One word riddle: Vowel in the middle

FPGA - DIY Programming

What did it mean to "align" a radio?

Lightning Grid - Columns and Rows?

Can we generate random numbers using irrational numbers like π and e?

Where to refill my bottle in India?

Multiply Two Integer Polynomials

How to save as into a customized destination on macOS?

During Temple times, who can butcher a kosher animal?

Return to UK after being refused entry years previously

Falsification in Math vs Science



Unable to display database table values on frontend in magento 2.1.7



The 2019 Stack Overflow Developer Survey Results Are InI just can't tell what is wrong with this Model code that save() is raising an exception.||Varien Data collection toOptionArray does not pass arguments to protected method?Magento 2: Duplicate key-sequence unique identity-constraint 'uniqueVirtualType' fatal error while di:compileCall to undefined method on custom collection Resource ModelModel class not found in …/magento/framework/ObjectManager/Factory/AbstractFactory.php:93Magento 2.1.6 Cannot save shipmentGet item collection by sku Magento 2Magento 2: toolbar url problems in custom module with custom routerMagento 2: How to override model resource configurable fileunable to solve the error in magento2



.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty margin-bottom:0;








1















I am trying to fetch table on frontend but getting this error




Fatal error: Class 'CrudCrudatfrontendModelResourceModelPost' not
found in
D:xampphtdocsnewmagvendormagentoframeworkObjectManagerFactoryAbstractFactory.php
on line 93





app/code/Crud/Crudatfrontend/
├── Block
│   └── index.php
├── etc
│    └── module.xml
├── Model
│   ├── Post.php
│   ├── ResourceModel
│   │   ├── Post
│   │   │   └── Collection.php
│   │   └── Post.php
├── registration.php
├── Setup
│   └── InstallSchema.php
└── view
└── frontend
├── layout
│   └── crud_index_index.xml
├── templates
   └── index.phtml


Here is my code,




Block/Index.php




<?php

namespace CrudCrudatfrontendBlock;

use MagentoFrameworkAppFilesystemDirectoryList;

class Index extends MagentoFrameworkViewElementTemplate

protected $_filesystem;

public function __construct(
MagentoFrameworkViewElementTemplateContext $context,
CrudCrudatfrontendModelPostFactory $postFactory
)

parent::__construct($context);
$this->_postFactory = $postFactory;


public function getResult()

$post = $this->_postFactory->create();
$collection = $post->getCollection();
return $collection;





Model/Post.php




<?php
namespace CrudCrudatfrontendModel;
class Post extends MagentoFrameworkModelAbstractModel implements MagentoFrameworkDataObjectIdentityInterface

protected function _construct()

$this->_init('CrudCrudatfrontendModelResourceModelPost');


public function getIdentities()

return [self::CACHE_TAG . '_' . $this->getId()];


public function getDefaultValues()

$values = [];

return $values;





ModelResourceModelPost.php




<?php

namespace CrudCrudatfrontendModelResourceModel;

use MagentoFrameworkModelResourceModelDbAbstractDb;

class HelloWorld extends AbstractDb

/**
* Model initialization
*/
protected function _construct()

$this->_init('Crud_Crudatfrontend', 'post_id');





ModelResourceModelPostcollection.php




<?php
namespace CrudCrudatfrontendModelResourceModelPost;

class Collection extends MagentoFrameworkModelResourceModelDbCollectionAbstractCollection

/**
* Define resource model
*
* @return void
*/
protected function _construct()

$this->_init('CrudCrudatfrontendModelPost', 'CrudCrudatfrontendModelResourceModelPost');











share|improve this question




























    1















    I am trying to fetch table on frontend but getting this error




    Fatal error: Class 'CrudCrudatfrontendModelResourceModelPost' not
    found in
    D:xampphtdocsnewmagvendormagentoframeworkObjectManagerFactoryAbstractFactory.php
    on line 93





    app/code/Crud/Crudatfrontend/
    ├── Block
    │   └── index.php
    ├── etc
    │    └── module.xml
    ├── Model
    │   ├── Post.php
    │   ├── ResourceModel
    │   │   ├── Post
    │   │   │   └── Collection.php
    │   │   └── Post.php
    ├── registration.php
    ├── Setup
    │   └── InstallSchema.php
    └── view
    └── frontend
    ├── layout
    │   └── crud_index_index.xml
    ├── templates
       └── index.phtml


    Here is my code,




    Block/Index.php




    <?php

    namespace CrudCrudatfrontendBlock;

    use MagentoFrameworkAppFilesystemDirectoryList;

    class Index extends MagentoFrameworkViewElementTemplate

    protected $_filesystem;

    public function __construct(
    MagentoFrameworkViewElementTemplateContext $context,
    CrudCrudatfrontendModelPostFactory $postFactory
    )

    parent::__construct($context);
    $this->_postFactory = $postFactory;


    public function getResult()

    $post = $this->_postFactory->create();
    $collection = $post->getCollection();
    return $collection;





    Model/Post.php




    <?php
    namespace CrudCrudatfrontendModel;
    class Post extends MagentoFrameworkModelAbstractModel implements MagentoFrameworkDataObjectIdentityInterface

    protected function _construct()

    $this->_init('CrudCrudatfrontendModelResourceModelPost');


    public function getIdentities()

    return [self::CACHE_TAG . '_' . $this->getId()];


    public function getDefaultValues()

    $values = [];

    return $values;





    ModelResourceModelPost.php




    <?php

    namespace CrudCrudatfrontendModelResourceModel;

    use MagentoFrameworkModelResourceModelDbAbstractDb;

    class HelloWorld extends AbstractDb

    /**
    * Model initialization
    */
    protected function _construct()

    $this->_init('Crud_Crudatfrontend', 'post_id');





    ModelResourceModelPostcollection.php




    <?php
    namespace CrudCrudatfrontendModelResourceModelPost;

    class Collection extends MagentoFrameworkModelResourceModelDbCollectionAbstractCollection

    /**
    * Define resource model
    *
    * @return void
    */
    protected function _construct()

    $this->_init('CrudCrudatfrontendModelPost', 'CrudCrudatfrontendModelResourceModelPost');











    share|improve this question
























      1












      1








      1








      I am trying to fetch table on frontend but getting this error




      Fatal error: Class 'CrudCrudatfrontendModelResourceModelPost' not
      found in
      D:xampphtdocsnewmagvendormagentoframeworkObjectManagerFactoryAbstractFactory.php
      on line 93





      app/code/Crud/Crudatfrontend/
      ├── Block
      │   └── index.php
      ├── etc
      │    └── module.xml
      ├── Model
      │   ├── Post.php
      │   ├── ResourceModel
      │   │   ├── Post
      │   │   │   └── Collection.php
      │   │   └── Post.php
      ├── registration.php
      ├── Setup
      │   └── InstallSchema.php
      └── view
      └── frontend
      ├── layout
      │   └── crud_index_index.xml
      ├── templates
         └── index.phtml


      Here is my code,




      Block/Index.php




      <?php

      namespace CrudCrudatfrontendBlock;

      use MagentoFrameworkAppFilesystemDirectoryList;

      class Index extends MagentoFrameworkViewElementTemplate

      protected $_filesystem;

      public function __construct(
      MagentoFrameworkViewElementTemplateContext $context,
      CrudCrudatfrontendModelPostFactory $postFactory
      )

      parent::__construct($context);
      $this->_postFactory = $postFactory;


      public function getResult()

      $post = $this->_postFactory->create();
      $collection = $post->getCollection();
      return $collection;





      Model/Post.php




      <?php
      namespace CrudCrudatfrontendModel;
      class Post extends MagentoFrameworkModelAbstractModel implements MagentoFrameworkDataObjectIdentityInterface

      protected function _construct()

      $this->_init('CrudCrudatfrontendModelResourceModelPost');


      public function getIdentities()

      return [self::CACHE_TAG . '_' . $this->getId()];


      public function getDefaultValues()

      $values = [];

      return $values;





      ModelResourceModelPost.php




      <?php

      namespace CrudCrudatfrontendModelResourceModel;

      use MagentoFrameworkModelResourceModelDbAbstractDb;

      class HelloWorld extends AbstractDb

      /**
      * Model initialization
      */
      protected function _construct()

      $this->_init('Crud_Crudatfrontend', 'post_id');





      ModelResourceModelPostcollection.php




      <?php
      namespace CrudCrudatfrontendModelResourceModelPost;

      class Collection extends MagentoFrameworkModelResourceModelDbCollectionAbstractCollection

      /**
      * Define resource model
      *
      * @return void
      */
      protected function _construct()

      $this->_init('CrudCrudatfrontendModelPost', 'CrudCrudatfrontendModelResourceModelPost');











      share|improve this question














      I am trying to fetch table on frontend but getting this error




      Fatal error: Class 'CrudCrudatfrontendModelResourceModelPost' not
      found in
      D:xampphtdocsnewmagvendormagentoframeworkObjectManagerFactoryAbstractFactory.php
      on line 93





      app/code/Crud/Crudatfrontend/
      ├── Block
      │   └── index.php
      ├── etc
      │    └── module.xml
      ├── Model
      │   ├── Post.php
      │   ├── ResourceModel
      │   │   ├── Post
      │   │   │   └── Collection.php
      │   │   └── Post.php
      ├── registration.php
      ├── Setup
      │   └── InstallSchema.php
      └── view
      └── frontend
      ├── layout
      │   └── crud_index_index.xml
      ├── templates
         └── index.phtml


      Here is my code,




      Block/Index.php




      <?php

      namespace CrudCrudatfrontendBlock;

      use MagentoFrameworkAppFilesystemDirectoryList;

      class Index extends MagentoFrameworkViewElementTemplate

      protected $_filesystem;

      public function __construct(
      MagentoFrameworkViewElementTemplateContext $context,
      CrudCrudatfrontendModelPostFactory $postFactory
      )

      parent::__construct($context);
      $this->_postFactory = $postFactory;


      public function getResult()

      $post = $this->_postFactory->create();
      $collection = $post->getCollection();
      return $collection;





      Model/Post.php




      <?php
      namespace CrudCrudatfrontendModel;
      class Post extends MagentoFrameworkModelAbstractModel implements MagentoFrameworkDataObjectIdentityInterface

      protected function _construct()

      $this->_init('CrudCrudatfrontendModelResourceModelPost');


      public function getIdentities()

      return [self::CACHE_TAG . '_' . $this->getId()];


      public function getDefaultValues()

      $values = [];

      return $values;





      ModelResourceModelPost.php




      <?php

      namespace CrudCrudatfrontendModelResourceModel;

      use MagentoFrameworkModelResourceModelDbAbstractDb;

      class HelloWorld extends AbstractDb

      /**
      * Model initialization
      */
      protected function _construct()

      $this->_init('Crud_Crudatfrontend', 'post_id');





      ModelResourceModelPostcollection.php




      <?php
      namespace CrudCrudatfrontendModelResourceModelPost;

      class Collection extends MagentoFrameworkModelResourceModelDbCollectionAbstractCollection

      /**
      * Define resource model
      *
      * @return void
      */
      protected function _construct()

      $this->_init('CrudCrudatfrontendModelPost', 'CrudCrudatfrontendModelResourceModelPost');








      database collection magento-2.1.7 resource-model






      share|improve this question













      share|improve this question











      share|improve this question




      share|improve this question










      asked yesterday









      bhakti thakkarbhakti thakkar

      564114




      564114




















          1 Answer
          1






          active

          oldest

          votes


















          2














          Resources class name is wrong




          class HelloWorld extends AbstractDb




          it should be




          class Post extends AbstractDb




          Change it to ModelResourceModelPost.php






          share|improve this answer























          • Ah, how can I miss this. Thanks

            – bhakti thakkar
            yesterday











          Your Answer








          StackExchange.ready(function()
          var channelOptions =
          tags: "".split(" "),
          id: "479"
          ;
          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: false,
          noModals: true,
          showLowRepImageUploadWarning: true,
          reputationToPostImages: null,
          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%2fmagento.stackexchange.com%2fquestions%2f269353%2funable-to-display-database-table-values-on-frontend-in-magento-2-1-7%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









          2














          Resources class name is wrong




          class HelloWorld extends AbstractDb




          it should be




          class Post extends AbstractDb




          Change it to ModelResourceModelPost.php






          share|improve this answer























          • Ah, how can I miss this. Thanks

            – bhakti thakkar
            yesterday















          2














          Resources class name is wrong




          class HelloWorld extends AbstractDb




          it should be




          class Post extends AbstractDb




          Change it to ModelResourceModelPost.php






          share|improve this answer























          • Ah, how can I miss this. Thanks

            – bhakti thakkar
            yesterday













          2












          2








          2







          Resources class name is wrong




          class HelloWorld extends AbstractDb




          it should be




          class Post extends AbstractDb




          Change it to ModelResourceModelPost.php






          share|improve this answer













          Resources class name is wrong




          class HelloWorld extends AbstractDb




          it should be




          class Post extends AbstractDb




          Change it to ModelResourceModelPost.php







          share|improve this answer












          share|improve this answer



          share|improve this answer










          answered yesterday









          Amit BeraAmit Bera

          59.8k1676178




          59.8k1676178












          • Ah, how can I miss this. Thanks

            – bhakti thakkar
            yesterday

















          • Ah, how can I miss this. Thanks

            – bhakti thakkar
            yesterday
















          Ah, how can I miss this. Thanks

          – bhakti thakkar
          yesterday





          Ah, how can I miss this. Thanks

          – bhakti thakkar
          yesterday

















          draft saved

          draft discarded
















































          Thanks for contributing an answer to Magento Stack Exchange!


          • 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%2fmagento.stackexchange.com%2fquestions%2f269353%2funable-to-display-database-table-values-on-frontend-in-magento-2-1-7%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

          Get product attribute by attribute group code in magento 2get product attribute by product attribute group in magento 2Magento 2 Log Bundle Product Data in List Page?How to get all product attribute of a attribute group of Default attribute set?Magento 2.1 Create a filter in the product grid by new attributeMagento 2 : Get Product Attribute values By GroupMagento 2 How to get all existing values for one attributeMagento 2 get custom attribute of a single product inside a pluginMagento 2.3 How to get all the Multi Source Inventory (MSI) locations collection in custom module?Magento2: how to develop rest API to get new productsGet product attribute by attribute group code ( [attribute_group_code] ) in magento 2

          Category:9 (number) SubcategoriesMedia in category "9 (number)"Navigation menuUpload mediaGND ID: 4485639-8Library of Congress authority ID: sh85091979ReasonatorScholiaStatistics

          Magento 2.3: How do i solve this, Not registered handle, on custom form?How can i rewrite TierPrice Block in Magento2magento 2 captcha not rendering if I override layout xmlmain.CRITICAL: Plugin class doesn't existMagento 2 : Problem while adding custom button order view page?Magento 2.2.5: Overriding Admin Controller sales/orderMagento 2.2.5: Add, Update and Delete existing products Custom OptionsMagento 2.3 : File Upload issue in UI Component FormMagento2 Not registered handleHow to configured Form Builder Js in my custom magento 2.3.0 module?Magento 2.3. How to create image upload field in an admin form