twill icon indicating copy to clipboard operation
twill copied to clipboard

Twill is an open source CMS toolkit for Laravel that helps developers rapidly create a custom admin console that is intuitive, powerful and flexible. Chat with us on Discord at https://discord.gg/cnWk...

Results 227 twill issues
Sort by recently updated
recently updated
newest added

## Summary To allow for more flexibility we want to introduce improved events in Twill along with custom actions. We need to: - [ ] Check current triggers of events...

type: feature

This is an experiment I did a while ago. It is a simple POC that utilizes livewire instead of vue. There is only a really small part rewritten and this...

## Summary I am using Self-nested modules for building the navigation. It is great that I can drag drop to manage the order using the position of navigation and sub...

For example: **resources/views/site/layout/block.blade.php** \ \ \ \#madewithtwill website \ @stack('styles') \ \ \ @yield('content') \ \ @stack('scripts') \ \ **resources/views/site/blocks/some_block.blade.php** @push('styles') \Some styles\ @endpush @push('scripts') \Some scripts\ @endpush Seems some_block...

type: feature

Create a way for blocks to exist without forms. Usecase examples: - Pre-programmed lists of blog teasers - Contact form - ...

type: feature

## Summary So this happened from experience, you define a block (maybe your first time) but you do not have the crop in the config. When the block form is...

type: enhancement

## Description To ease with development, it would be useful to have an installable example that has the following: - Singleton - Nested module - Regular module - Block with...

## Summary It can be useful for site admins to build dynamic forms. I want to explore if we can make this possible in Twill core. ## Describe the solution...

## Summary Now that we the form builder we could add inline validation (https://github.com/area17/twill/pull/1360): ```php return Form::make([ Input::make() ->name('test') ->rules(['required', 'string']), ]); ```

type: enhancement

To further enhance the developer experience I want to add getters/setters for: `'indexOptions`, while we leave the property for 3.x (but deprecated) we instead suggest to use: ```php 'create' =>...