iddigitalagency / starterkit
ID Digital Filament Starter Kit
Installs: 2
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 0
Forks: 0
Open Issues: 0
Type:project
Requires
- php: ^8.2
- bezhansalleh/filament-shield: ^3.3
- dedoc/scramble: ^0.12.10
- dutchcodingcompany/filament-socialite: ^2.3
- filament/filament: ^3.3
- filament/spatie-laravel-media-library-plugin: ^3.2
- filament/spatie-laravel-settings-plugin: ^3.2
- jeffgreco13/filament-breezy: ^2.4
- laravel/framework: ^12.0
- laravel/sanctum: ^4.0
- laravel/tinker: ^2.9
- livewire/livewire: ^3.6
- owenvoke/blade-fontawesome: ^2.8
- pxlrbt/filament-excel: ^2.3
- rupadana/filament-api-service: ^3.4.4
- socialiteproviders/google: ^4.1
- stechstudio/filament-impersonate: ^3.15
- z3d0x/filament-fabricator: ^2.5
Requires (Dev)
- barryvdh/laravel-debugbar: ^3.14
- fakerphp/faker: ^1.23
- laravel-shift/blueprint: ^2.10
- laravel/pail: ^1.1
- laravel/pint: ^1.13
- laravel/sail: ^1.26
- mockery/mockery: ^1.6
- nunomaduro/collision: ^8.1
- pestphp/pest: ^3.6
- pestphp/pest-plugin-laravel: ^3.0
This package is not auto-updated.
Last update: 2025-08-11 11:50:00 UTC
README
- TODO::Still have to deploy this to packagist. For now, clone the Project from github.
composer create-project iddigital/starter
-
Install dependencies
composer install
-
NPM install
npm install && npm run build
-
copy Environment file
cp .env.example.
-
Configure database settings
DB_CONNECTION=mysql DB_HOST=127.0.01 DB_PORT=3306 DB_DATABASE=starter DB_USERNAME=root DB_PASSWORD=password
-
(Optional) Add Sign in by Google configuration
GOOGLE_CLIENT_ID={clientID} GOOGLE_CLIENT_SECRET={clientSecret} GOOGLE_REDIRECT_URI=https://starter.test/admin/oauth/callback/google
-
Run Installation Command
php artisan key:generate && php artisan starter:install
-
Acccess admin panel.
If you are using laravel Herd:
http(s)://{foldername}.test/admin
Note: Installer script creates admin@admin.com / password credentials. You can use this account to create actual users in stating and production servers. Developer login is also added - refer to step 6 to enable. Please make sure that the google app credentials is only allowed to be used by @iddigital.com.au accounts
Manage Pages
To manage frontend pages: https://starter.test/admin/pages
Page customisation
Pages was customised to included Meta Fields. Page fields can also customisable. You can do this by updating the \App\Filament\Fabricator\PageResource. Please note that Page model and database tables need to be updated accoringly
Layout
Starter Kit comes with only a Default Layout. You can add a new layout using this command:
php artisan filament-fabricator:layout AdditionalLayout
Refer to this documentation for more info: https://v2.filamentphp.com/plugins/fabricator#layouts
Blocks
Starter Kit comes with a few basic Blocks. You can add a new block using this command:
php artisan filament-fabricator:block MyBlock
Page Blocks is fully customisable. Refer to the documentation for more details: https://v2.filamentphp.com/plugins/fabricator#page-blocks
Roles
Starter Kit comes with Super Admin and Developer Roles and seeded with the initial permissions. If necessary, you can add more roles and custom permissions.
Refer to the plugin documentation for more info: https://filamentphp.com/plugins/bezhansalleh-shield