antoniputra / ngeblog
Quickstart Blogging for your brand-new or existing Laravel App.
Installs: 68
Dependents: 0
Suggesters: 0
Security: 0
Stars: 17
Watchers: 2
Forks: 11
Open Issues: 2
Language:Vue
Requires
- php: ^8.2
- illuminate/support: ^11.0
Requires (Dev)
- laravel/pint: ^1.15
- orchestra/testbench: ^9.0
- pestphp/pest: ^2.34
- phpstan/phpstan: ^1.10
- stevebauman/autodoc-facades: ^1.2
README
Ngeblog
It helps you to quickly set up a simple Blogging System for your existing or brand-new Laravel application. Ngeblog provides a simple and elegant admin panel built with Vue
and Daisy UI
as a Modern SPA App.
Features
- BlogPost with Tiptap Editor.
- Tagging feature.
- Dashboard.
- Starter Page.
- and more...
Screenshot
Preview of Dashboard page.
Preview of Starter page.
Installation
composer require antoniputra/ngeblog
Resolve the installation:
php artisan ngeblog:install
Configuration
After installation, by default will provide an admin panel at https://your-web.test/ngeblog
and only available for authenticated user.
Follow below section to customize as you wish.
Change Admin Panel URL
Go to your .env
and put new key value:
NGEBLOG_PATH='blog-admin-panel'
Protect Admin Panel
You can add your own protection logic like below:
// App/Providers/AppServiceProvider.php Gate::define('accessNgeblogAdmin', function ($user) { return in_array($user->email, [ // list of whitelisted emails... ]); });
Contributing Guide
I glad to see you here on this section. Whether you're a seasoned developer or new to open source, your participation is valuable. Let's collaborate and learn together! 🚀
Follow the steps below to get started.
Back-end Dependencies:
- Laravel 11
- Pest, Testbench
Front-end Dependencies:
- Vue 3 & VueRouter (script-setup)
- Tailwind & DaisyUI.
- Tiptap Editor, HeadlessUI, VueUse, FloatingUI.
Steps to Contribute:
- Fork and clone the repo, then navigate to the project folder.
- Install dependencies:
composer install
&npm install
. - Run the app:
composer serve
.
Asset Building:
- For development (rebuilds on save):
npm run watch
- Before pushing code (minified version):
npm run build
Credits
- Thanks to @arryanggaputra for the nice looking logo.
License
Ngeblog is open-sourced software licensed under the MIT license.
Built with love by @antoni_putra12 and made better by you.