├── LICENSE.md ├── README.md ├── composer.json ├── config └── filament-title-with-slug.php ├── package.json ├── pint.json ├── postcss.config.js ├── resources ├── css │ └── filament-title-with-slug.css ├── dist │ └── filament-title-with-slug.css ├── lang │ ├── ar │ │ └── package.php │ ├── de │ │ └── package.php │ ├── en │ │ └── package.php │ ├── fr │ │ └── package.php │ ├── id │ │ └── package.php │ ├── nl │ │ └── package.php │ └── pt_BR │ │ └── package.php └── views │ ├── forms │ └── fields │ │ └── slug-input.blade.php │ └── tests │ └── support │ └── testable-form.blade.php ├── src ├── FilamentTitleWithSlugServiceProvider.php ├── Forms │ ├── Components │ │ └── TitleWithSlugInput.php │ └── Fields │ │ └── SlugInput.php └── helpers.php └── tailwind.config.js /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camya/filament-title-with-slug/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camya/filament-title-with-slug/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camya/filament-title-with-slug/HEAD/composer.json -------------------------------------------------------------------------------- /config/filament-title-with-slug.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camya/filament-title-with-slug/HEAD/config/filament-title-with-slug.php -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camya/filament-title-with-slug/HEAD/package.json -------------------------------------------------------------------------------- /pint.json: -------------------------------------------------------------------------------- 1 | { 2 | "preset": "laravel" 3 | } 4 | -------------------------------------------------------------------------------- /postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camya/filament-title-with-slug/HEAD/postcss.config.js -------------------------------------------------------------------------------- /resources/css/filament-title-with-slug.css: -------------------------------------------------------------------------------- 1 | @tailwind utilities; 2 | -------------------------------------------------------------------------------- /resources/dist/filament-title-with-slug.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camya/filament-title-with-slug/HEAD/resources/dist/filament-title-with-slug.css -------------------------------------------------------------------------------- /resources/lang/ar/package.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camya/filament-title-with-slug/HEAD/resources/lang/ar/package.php -------------------------------------------------------------------------------- /resources/lang/de/package.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camya/filament-title-with-slug/HEAD/resources/lang/de/package.php -------------------------------------------------------------------------------- /resources/lang/en/package.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camya/filament-title-with-slug/HEAD/resources/lang/en/package.php -------------------------------------------------------------------------------- /resources/lang/fr/package.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camya/filament-title-with-slug/HEAD/resources/lang/fr/package.php -------------------------------------------------------------------------------- /resources/lang/id/package.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camya/filament-title-with-slug/HEAD/resources/lang/id/package.php -------------------------------------------------------------------------------- /resources/lang/nl/package.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camya/filament-title-with-slug/HEAD/resources/lang/nl/package.php -------------------------------------------------------------------------------- /resources/lang/pt_BR/package.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camya/filament-title-with-slug/HEAD/resources/lang/pt_BR/package.php -------------------------------------------------------------------------------- /resources/views/forms/fields/slug-input.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camya/filament-title-with-slug/HEAD/resources/views/forms/fields/slug-input.blade.php -------------------------------------------------------------------------------- /resources/views/tests/support/testable-form.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camya/filament-title-with-slug/HEAD/resources/views/tests/support/testable-form.blade.php -------------------------------------------------------------------------------- /src/FilamentTitleWithSlugServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camya/filament-title-with-slug/HEAD/src/FilamentTitleWithSlugServiceProvider.php -------------------------------------------------------------------------------- /src/Forms/Components/TitleWithSlugInput.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camya/filament-title-with-slug/HEAD/src/Forms/Components/TitleWithSlugInput.php -------------------------------------------------------------------------------- /src/Forms/Fields/SlugInput.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/camya/filament-title-with-slug/HEAD/src/Forms/Fields/SlugInput.php -------------------------------------------------------------------------------- /src/helpers.php: -------------------------------------------------------------------------------- 1 |