larawhale / cms
A Laravel cms package
Requires
- php: ^7.4
- laravel/framework: ^8.0
- laravel/ui: ^3.0
- laravelcollective/html: ^6.0
Requires (Dev)
- dev-master
- 0.1.2
- 0.1.1
- 0.1.0
- v0.0.5
- v0.0.4
- v0.0.3
- v0.0.2
- v0.0.1
- dev-dependabot/npm_and_yarn/json5-1.0.2
- dev-dependabot/npm_and_yarn/express-4.18.2
- dev-dependabot/npm_and_yarn/decode-uri-component-0.2.2
- dev-dependabot/npm_and_yarn/eventsource-1.1.1
- dev-dependabot/npm_and_yarn/async-2.6.4
- dev-dependabot/npm_and_yarn/minimist-1.2.6
- dev-dependabot/npm_and_yarn/url-parse-1.5.10
- dev-dependabot/npm_and_yarn/follow-redirects-1.14.8
- dev-dependabot/npm_and_yarn/path-parse-1.0.7
- dev-dependabot/composer/league/flysystem-1.1.4
- dev-dependabot/npm_and_yarn/trim-newlines-3.0.1
- dev-dependabot/npm_and_yarn/ws-6.2.2
- dev-dependabot/npm_and_yarn/dns-packet-1.3.4
- dev-dependabot/npm_and_yarn/browserslist-4.16.6
- dev-dependabot/npm_and_yarn/hosted-git-info-2.8.9
- dev-dependabot/npm_and_yarn/lodash-4.17.21
- dev-dependabot/composer/laravel/framework-8.40.0
- dev-dependabot/npm_and_yarn/ssri-6.0.2
- dev-dependabot/npm_and_yarn/y18n-4.0.1
- dev-dependabot/npm_and_yarn/elliptic-6.5.4
- dev-dependabot/npm_and_yarn/ini-1.3.8
- dev-feature/fields-multi-files-field
- dev-feature/fields-multi-fields
- dev-branding-one
This package is auto-updated.
Last update: 2025-03-06 09:48:35 UTC
README
A Laravel package that provides the features of a content management system to any new or existing Laravel application.
This package uses a simple concept of two entities, entries and fields. Entries can be seen as models, where fields are the properties of these models.
The goal of this package is to take the implementation of managing content out of the hands of the developer while maintaining as much customizability as possible. It is important to keep the development process the same as how developers are used to while using the Laravel framework.
Installation
This package can be installed using composer:
composer require larawhale/cms
Read more about the installation of this package in the documentation.
Example
Here is a quick example how an entry can be configured. The entry will be made available in the user interface when it is saved in the default resources/entries
folder.
// resources/entries/post.php return [ 'type' => 'post', 'name' => 'Post', 'view' => 'entries.post', 'fields' => [ [ 'key' => 'route', 'type' => 'route', 'config' => [ 'rules' => 'required', 'label' => 'Url', ], ], [ 'key' => 'title', 'type' => 'text', 'config' => [ 'rules' => 'required|string|max:191', 'label' => 'Title', ], ], [ 'key' => 'body', 'type' => 'textarea', 'config' => [ 'rules' => 'required|string|max:1000', 'label' => 'Body', ], ], ], ];
More information can be found at the entries configuration and fields configutation documentation.
This configuration will result in the following form to be rendered in the user interface.
The configured fields of this entry have now been made available in the configured resources/views/entries/post.blade.php
file.
// resources/views/entries/post.blade.php <h1> {{ $entry->title }} </h1> {!! $entry->body !!}
Documentation
The documentation is available on the repository wiki.
License
This package falls under the MIT License (MIT). See the license file for more information.