Download the PHP package cwsps154/app-settings without Composer
On this page you can find all versions of the php package cwsps154/app-settings. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download cwsps154/app-settings
More information about cwsps154/app-settings
Files in cwsps154/app-settings
Informations about the package app-settings
Filament App Settings
This package will help you to build settings panel with custom forms, which supports all Filament forms components.
Installation
Install Using Composer
Run
Usage/Examples
Add this into your Filament PannelProvider
class panel()
You will get some customization on this
Here using canAccess()
method you can prevent the view and edit access to the page and using appAdditionalField()
method you can add additional sections to the default app tab which will available after you install this plugin.
Also, you can restrict access to the app section using canAccessAppSectionTab()
If you are using cwsps154/users-roles-permissions
plugin you can use like this
Run this command to set up the plugin
which contains these settings
You can create a new tab to these settings using php artisan make:app-settings-tab
command, which will create a class inside app/Filament/Settings/Forms
folder.
Sometimes the newly created tab will not automatically show in the page, then please run this
You can customize the tab sections using the getTab()
. Please note that you should give a unique name to the tab, statePath. Because, we are using custom helper function get_settings()
to fetch the settings data. So the these names should be unique.
Using visible(true)
you can individually control each tab.
get_settings()
accept the 'tab_name.field_name'.
Example : get_settings('app.app_logo'))
. This will support nested fields like Repeater
, these values you can access by dot.
getFields()
returns the array of Filament forms component. You can use all available forms component here.
getSortOrder()
returns the integer value, using this to sort the tabs in the page.
Screenshots
Thanks
Actually this package I was build after using one already existing Filament plugin which is called Filament General Settings. I found some limitations to that packages, So I created this one. Thanks
All versions of app-settings with dependencies
filament/filament Version ^3.2
spatie/laravel-package-tools Version ^1.15.0
ysfkaya/filament-phone-input Version ^3.1