Headless CMS, Use it as Headless CMS or Bundled, API enabled, Admin Panel, multisite/multi-tenant, multiplatform, multilingual with endless possibilities. The Most powerful, fast, user-friendly and secured platform. Made with PHP Laravel Framework.
Via Composer
composer create-project laravel/laravel mysite
cd mysite
composer require marghoobsuleman/hashtagcms
- Open
config/app.php
and add below line in the array. (only needed less than v1.4.3 version)
MarghoobSuleman\HashtagCms\HashtagCmsServiceProvider::class
- Open
.env
file and updateAPP_URL
, and make sure database information is correct. - Change DB_CONNECTION to
mysql
and update database information.
DB_CONNECTION=mysql
DB_HOST=127.0.0.1
DB_PORT=3306
DB_DATABASE=your_db_name
DB_USERNAME=your_db_username
DB_PASSWORD=your_db_password (leave it blank if no password)
- Open
app/Models/User.php
and remove or comment below lines.
// use Illuminate\Foundation\Auth\User as Authenticatable
- Add below lines in the same file (
app/Models/User.php
)
use MarghoobSuleman\HashtagCms\User as Authenticatable;
- You might want to comment/remove below route in
routes/web.php
/*Route::get('/', function () {
return view('welcome');
});*/
###Install Command
php artisan cms:install
http://{APP_URL}/install
ie:
http://www.hashtagcms.org/install
- You are done :)
php artisan test vendor/marghoobsuleman/hashtagcms
Recent change logs more...
#v1.4.5 Changes
- API: Return expiry and roles, sites in user info
#v1.4.4 Changes
- Backend: Module creator has a typo bug. x was added mistakenly. Fixed.
- Backend: Js module -> Site-wise component has been updated.
- General: API bug fixes.
#v1.4.3 Changes
- Laravel 11 support and cleanup
#v1.4.2 Changes
- Backend/Frontend/API: Added festival support. You can add lottie and schedule it.
- API: Added ServiceLater Support. Service url will be passed to view too.
- Core: Added module data modifier
- See how it works:
- Create class/method App\Parser\ModuleDataModifier->moduleAliasNameMethod(data, moduleInfo) and manipulate your data and return it. Works for API and views.
- Do not forget to run php artisan migrate if you are upgrading.
More logs changelog for more information on what has changed recently.
Please see contributing.md for details and a todolist.
If you discover any security related issues, please email author email instead of using the issue tracker.
- [Marghoob Suleman][https://www.marghoobsuleman.com]
license. Please see the license file for more information.