All Projects → remipou → nova-page-manager

remipou / nova-page-manager

Licence: MIT License
Page manager for Laravel Nova

Programming Languages

PHP
23972 projects - #3 most used programming language
javascript
184084 projects - #8 most used programming language
Blade
752 projects
SCSS
7915 projects

Projects that are alternatives of or similar to nova-page-manager

tbftss
2D mission-based space shooter, based on the Battle for the Solar System space opera novel trilogy.
Stars: ✭ 46 (+31.43%)
Mutual labels:  hacktoberfest2021
forestTreesTagging
This project has the vision to assist the officials for Forest trees census and tagging each tree with proper location (latitude and longitude), tree type, and other arguments. and further had the plan to apply data analysis over-collected data.
Stars: ✭ 18 (-48.57%)
Mutual labels:  hacktoberfest2021
CPP-DSA
C++ Data Structures and Algorithms | College Placement Course taught by renowned faculties of Apni Kaksha (Aman Dhattarwal).
Stars: ✭ 53 (+51.43%)
Mutual labels:  hacktoberfest2021
HealthBliss-Hacktoberfest2021
HealthBliss is a static responsive website which provides its users with good health reads on how to overcome anxiety, depression and bipolar disorders. Check the readme to know more.
Stars: ✭ 22 (-37.14%)
Mutual labels:  hacktoberfest2021
voyager-hf
Voyager website: A space website that can be used as a template in the future for space-related topics.
Stars: ✭ 34 (-2.86%)
Mutual labels:  hacktoberfest2021
cinesimile
CineSimile is a platform that shows similar movies for a specific movie.
Stars: ✭ 16 (-54.29%)
Mutual labels:  hacktoberfest2021
wazuh-puppet
Wazuh - Puppet module
Stars: ✭ 25 (-28.57%)
Mutual labels:  hacktoberfest2021
magento2-showoutofstockprice
This Magento2 Module adds prices and the add-to-cart button to out-of-stock configurable products.
Stars: ✭ 22 (-37.14%)
Mutual labels:  hacktoberfest2021
Hacktoberfest-imagine-your-contribution
Contribute anything for your T-shirt, must be relevant that can add some value to this repo.
Stars: ✭ 16 (-54.29%)
Mutual labels:  hacktoberfest2021
NearBeach
NearBeach is an open sourced project management tool, helping you keep track of your project. You can track requirements, projects and tasks
Stars: ✭ 97 (+177.14%)
Mutual labels:  hacktoberfest2021
Hacktoberfest-hackedoff
This Repo contains easy javascript questions for beginners to participate in Hacktoberfest 2021.
Stars: ✭ 14 (-60%)
Mutual labels:  hacktoberfest2021
pbreadinglist
No description or website provided.
Stars: ✭ 19 (-45.71%)
Mutual labels:  hacktoberfest2021
GoogleKickStart2020 Solutions
This repository will contain solutions of "Google Kick Start 2020" in C/C++/Java/Python. If you loved it, give a 🌟!
Stars: ✭ 137 (+291.43%)
Mutual labels:  hacktoberfest2021
Hacktoberfest2021-DSA
If You know the implementation of any DSA related topic/problem then you can contribute it in this repo. Raise Genuine PRs only. Your PRs will be accepted, keep patience. Star this Repo. You aren't allowed to Update README.md. Welcoming developers, content writers, and programming enthusiasts.
Stars: ✭ 232 (+562.86%)
Mutual labels:  hacktoberfest2021
Caribay
A PEG Parser Generator with Semi-Automatic Error Recovery based on LPeg(Label)
Stars: ✭ 14 (-60%)
Mutual labels:  hacktoberfest2021
Angular
A repositoy to learn and boost your Angular skills. It contains cheatsheet, code, articlues and all learning resources you need.
Stars: ✭ 49 (+40%)
Mutual labels:  hacktoberfest2021
downloadTimeCalculator
A site to get approximate download time
Stars: ✭ 25 (-28.57%)
Mutual labels:  hacktoberfest2021
moxer-code
Moxer Theme brings your DX to another level.
Stars: ✭ 37 (+5.71%)
Mutual labels:  hacktoberfest2021
WWCodePython
Content, Code & Resources for WWCodePython Events
Stars: ✭ 183 (+422.86%)
Mutual labels:  hacktoberfest2021
MERN-E-Commerce
A simple E-Commerce app built on MERN stack with integrated Stripe Checkout.
Stars: ✭ 57 (+62.86%)
Mutual labels:  hacktoberfest2021

Latest Stable Version Total Downloads Latest Unstable Version License StyleCI

A page manager for Nova

A simple page manager to use with Laravel and Nova.

Installation

Install with composer:

composer require remipou/nova-page-manager

Publish configuration, views and migrations:

php artisan vendor:publish --provider="Remipou\NovaPageManager\NovaPageServiceProvider"

Run the migrations

php artisan migrate

Register the resource in NovaServiceProvider:

use Remipou\NovaPageManager\PageResource;

protected function resources() {
    Nova::resourcesIn(app_path('Nova'));

    Nova::resources([
        PageResource::class,
    ]);
}

Add this at the end of your routes/web.php:

Route::get('{slug}/{param?}', '\Remipou\NovaPageManager\PageController@page')
	->where('slug', '^((?!' . trim(config('nova.path'), '/') . '|nova-).)*$')
	->name('page-manager');

Usage

Create templates in resources/views/templates. Route and Controller are included but you need to style your templates.

Screenshots

screenshot1

screenshot2

Roadmap

  • add markup to content
  • add hierarchy (parent/child pages)
  • add a menu manager
  • add a page builder

Changelog

  • 1.0.2 added markup to content
  • 1.0.1 first version

Credits

License

The MIT License (MIT). Please see License File for more information.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].