Quickstart Blogging for your brand-new or existing Laravel App.
antoniputra/ngeblog is a Laravel package for quickstart blogging for your brand-new or existing laravel app..
It currently has 18 GitHub stars and 72 downloads on Packagist (latest version v2.0.0).
Install it with composer require antoniputra/ngeblog.
Discover more Laravel packages by antoniputra
or browse all Laravel packages to compare alternatives.
Last updated
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.
composer require antoniputra/ngeblog
Resolve the installation:
php artisan ngeblog:install
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.
Go to your .env and put new key value:
NGEBLOG_PATH='blog-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...
]);
});
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.
composer install & npm install.composer serve.npm run watch
npm run build
Ngeblog is open-sourced software licensed under the MIT license.
Built with love by @antoni_putra12 and made better by you.