whitecube / nova-page

Static pages content management for Laravel Nova
https://whitecube.github.io/nova-page
MIT License
238 stars 41 forks source link

Undefined index: model #62

Closed rabichawila closed 4 years ago

rabichawila commented 4 years ago

Helping someone with their project and we're facing this error. Anyone who know what we might be missing?..

Screenshot from 2020-04-04 13-31-31

toonvandenbos commented 4 years ago

Hi @rabichawila,

This seems to be related to the database data source usage. Did you take a look at the docs? Let me know if you find something.

rabichawila commented 4 years ago

I have managed to suppress the error with this :

config/novapage.php

        'database' => [
            'table_name' => 'static_pages',
            'model' => 'App\\Models\\StaticPage',
        ],

Thanks.