KdPisda
KdPisda

Reputation: 230

Missing options in settings page in Voyager Laravel admin panel

I just installed Voyager in my Laravel Project. Now in my admin panel in Voyager in settings page I am unable to get options like changing Logo, Title etc. from my admin panel. Here is the snips of my admin panel. I am missing options for changing basic stuffs in my panel

I am getting this in my title bar.
My page title is null I am getting only ' - '.
Laravel Version: 5.4 Voyager: 0.11.14
php: 7.x
mysql: 5.7

Upvotes: 2

Views: 2648

Answers (1)

Abhinav Verma
Abhinav Verma

Reputation: 435

It's just because, you haven't created any setting variables in the setting menu of voyager, so all you have to do is to create certain settings in the admin panel like admin_title (field type text), admin_description (field type text area),

as shown in this picture once you have created these setting voyager will pick them for its admin title and admin description.

if you want any such other setting(s) create our own custom field and you can use them anywhere in your project like :

Voyager::setting('your_custom_field_settings')

you can also use some nice cheatsheet for voyager at here. i hope this helps.

Upvotes: 1

Related Questions