├── stubs
├── .gitkeep
├── livewire
│ ├── views
│ │ ├── elements
│ │ │ ├── text-element.blade.php
│ │ │ ├── image-element.blade.php
│ │ │ └── video-element.blade.php
│ │ ├── pages
│ │ │ └── show.blade.php
│ │ └── page.blade.php
│ ├── elements
│ │ ├── TextElement.php
│ │ ├── ImageElement.php
│ │ └── VideoElement.php
│ └── Page.php
├── vue
│ ├── elements
│ │ ├── TextElement.vue
│ │ ├── ImageElement.vue
│ │ └── VideoElement.vue
│ └── Page.vue
└── controllers
│ ├── LivewirePageController.php.stub
│ └── InertiaPageController.php.stub
├── resources
├── views
│ ├── .gitkeep
│ ├── pages
│ │ ├── filamentor.blade.php
│ │ └── builder.blade.php
│ └── elements
│ │ ├── text.blade.php
│ │ ├── video.blade.php
│ │ └── image.blade.php
├── lang
│ └── en
│ │ └── filamentor.php
├── page-resource
│ └── pages
│ │ ├── edit-page.blade.php
│ │ └── element-editor.blade.php
├── js
│ ├── store.js
│ └── dragHandlers.js
└── css
│ └── filamentor.css
├── src
├── Filamentor.php
├── Testing
│ └── TestsFilamentor.php
├── Contracts
│ └── ElementInterface.php
├── Resources
│ ├── PageResource
│ │ └── Pages
│ │ │ ├── CreatePage.php
│ │ │ ├── ListPages.php
│ │ │ └── EditPage.php
│ └── PageResource.php
├── Facades
│ └── Filamentor.php
├── Commands
│ ├── FilamentorCommand.php
│ └── InstallFilamentor.php
├── Pages
│ └── Filamentor.php
├── Support
│ └── ElementRegistry.php
├── Elements
│ ├── Video.php
│ ├── Text.php
│ └── Image.php
├── FilamentorPlugin.php
├── Models
│ └── Page.php
└── FilamentorServiceProvider.php
├── config
└── filamentor.php
├── postcss.config.cjs
├── database
├── factories
│ └── ModelFactory.php
└── migrations
│ └── create_filamentor_table.php.stub
├── vite.config.js
├── CHANGELOG.md
├── LICENSE.md
├── bin
└── build.js
├── dist
├── filamentor.css
├── filamentor.umd.cjs
└── alpine-sort.js
├── composer.json
└── README.md
/stubs/.gitkeep:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/resources/views/.gitkeep:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/src/Filamentor.php:
--------------------------------------------------------------------------------
1 |
2 | {!! $content['text'] !!}
3 |
4 |
--------------------------------------------------------------------------------
/stubs/livewire/views/pages/show.blade.php:
--------------------------------------------------------------------------------
1 | Your page builder is ready.Welcome to Filamentor3!
4 |
Current image:
423 |