mathsyo / tall-starter-kit-new
TALL Starter Kit New
1.0.40
2024-09-08 17:15 UTC
Requires
- php: ^8.2
- ext-zip: *
- amidesfahani/filament-tinyeditor: ^2.0
- awcodes/filament-curator: ^3.6
- awcodes/filament-sticky-header: ^2.0
- bezhansalleh/filament-shield: ^3.2
- chrisreedio/socialment: ^3.9
- coolsam/modules: 4.0.6
- davidhsianturi/blade-bootstrap-icons: ^1.5
- filament/filament: ^3.2
- filament/spatie-laravel-settings-plugin: ^3.2
- filament/spatie-laravel-translatable-plugin: ^3.2
- guava/filament-icon-picker: ^2.2
- jaocero/radio-deck: ^1.2
- lara-zeus/bolt: ^3.0
- laravel/framework: ^11.9
- laravel/jetstream: ^5.1
- laravel/prompts: ^0.1.24
- laravel/sanctum: ^4.0
- laravel/socialite: ^5.15
- laravel/tinker: ^2.9
- livewire/livewire: ^3.0
- mhmiton/laravel-modules-livewire: ^3.0
- nwidart/laravel-modules: ^11.0
- saade/filament-adjacency-list: ^3.2
- sixlive/dotenv-editor: ^2.0
- spatie/laravel-backup: ^9.0
- spatie/laravel-settings: ^3.3
- spatie/laravel-translatable: ^6.8
- tallstackui/tallstackui: ^1.33
Requires (Dev)
- fakerphp/faker: ^1.23
- laravel/pint: ^1.13
- mockery/mockery: ^1.6
- nunomaduro/collision: ^8.0
- pestphp/pest: ^2.0
- pestphp/pest-plugin-laravel: ^2.0
- dev-main
- 1.0.40
- 1.0.39
- 1.0.38
- 1.0.37
- 1.0.36
- 1.0.35
- 1.0.34
- 1.0.33
- 1.0.32
- 1.0.31
- 1.0.30
- 1.0.29
- 1.0.28
- 1.0.27
- 1.0.26
- 1.0.25
- 1.0.24
- 1.0.23
- 1.0.22
- 1.0.21
- 1.0.20
- 1.0.19
- 1.0.18
- 1.0.17
- 1.0.16
- 1.0.15
- 1.0.14
- 1.0.13
- 1.0.12
- 1.0.11
- 1.0.10
- 1.0.9
- 1.0.8
- 1.0.7
- 1.0.6
- 1.0.5
- 1.0.4
- 1.0.3
- 1.0.2
- 1.0.1
- 1.0.0
- dev-dockerization
This package is auto-updated.
Last update: 2025-03-08 18:08:13 UTC
README
Prerequisites
Installation
Usage
KB
Create a new Module
1. Create module : nwidart/laravel-modules
php artisan module:make Blog
2. Install Filament on module : coolsam/modules
php artisan module:filament:install Blog
Yes
Yes
- Edit default cluster file name and class name
- Create a new folder for cluster
3. Create module settings : spatie/laravel-settings
php artisan make:setting BlogSettings --group=blog
php artisan make:settings-migration CreateBlogSettings
- Move migration and settings file into module
- Edit namespaces in migration and settings file
- Configure settings
php artisan migrate
4. Create module Filament settings page : filament/spatie-laravel-settings-plugin
php artisan make:filament-settings-page ManageBlogSettings BlogSettings
- Move settings page file into module
- Edit namespaces in settings page file
- Configure form schema for settings
5. Create Livewire component in module mhmiton/laravel-modules-livewire
php artisan module:make-livewire Pages/AboutPage Blog