webappid / content
Core content for multipurpose such as blog etc, if the web need more detail content info please create child table from content
Requires
- php: >=8.0
- doctrine/dbal: ^2.5
- gumlet/php-image-resize: ^1.9
- illuminate/support: ^9.0
- nesbot/carbon: ^2.0
- webappid/laravel-user: ^5.0
- webappid/lazy: ^1.0@dev
- webappid/smartresponse: ^2.0
Requires (Dev)
- mockery/mockery: ^1.0
- orchestra/testbench: ^7.0
- phpunit/phpunit: ^9.0
- 6.0.1
- 6.0.0
- 5.7.0
- 5.6.4
- 5.6.3
- 5.6.2
- 5.6.1
- 5.6.0
- 5.5.9
- 5.5.8
- 5.5.7
- 5.5.6
- 5.5.5
- 5.5.4
- 5.5.3
- 5.5.2
- 5.5.1
- 5.5.0
- 5.4.1
- 5.4.0
- 5.3.5
- 5.3.4
- 5.3.3
- 5.3.2
- 5.3.1
- 5.3.0
- 5.2.6
- 5.2.5
- 5.2.4
- 5.2.3
- 5.2.2
- 5.2.1
- 5.2.0
- 5.1.5
- 5.1.4
- 5.1.3
- 5.1.2
- 5.1.1
- 5.1.0
- 5.0.1
- 5.0.0
- 4.0.4
- 4.0.3
- 4.0.2
- 4.0.1
- 4.0.0
- 3.0.2
- 3.0.1
- 3.0.0
- 2.11.12
- 2.11.11
- 2.11.10
- 2.11.9
- 2.11.8
- 2.10.8
- 2.10.7
- 2.10.6
- 2.9.6
- 2.8.6
- 2.8.5
- 2.8.4
- 2.8.3
- 2.8.2
- 2.8.1
- 2.7.1
- 2.7.0
- 2.6.6
- 2.6.5
- 2.5.6
- 2.5.5
- 2.5.4
- 2.5.3
- 2.5.2
- 2.5.1
- 2.5.0
- 2.4.6
- 2.4.5
- 2.4.4
- 2.4.3
- 2.4.2
- 2.4.1
- 2.4.0
- 2.3.4
- 2.3.3
- 2.3.2
- 2.3.1
- 2.3.0
- 2.2.1
- 2.2.0
- 2.1.9
- 2.1.8
- 2.0.7
- 2.0.6
- 2.0.5
- 2.0.4
- 2.0.3
- 2.0.2
- 2.0.1-beta
- 2.0.0-beta
- dev-master / 1.0.x-dev
- 1.0.16
- 1.0.15
- 1.0.14
- 1.0.13
- 1.0.12
- 1.0.11
- 1.0.10
- 1.0.9
- 1.0.8
- 1.0.7
- 1.0.5
- 1.0.4
- 1.0.3
- 1.0.2
- 1.0.1
- dev-develop
This package is auto-updated.
Last update: 2025-07-16 02:37:53 UTC
README
A Laravel-based Content Management System Core Package
laravel-content
serves as the foundational package for building a comprehensive Content Management System (CMS) powered by the Laravel framework. It provides the essential structure and functionalities needed to manage your application's content efficiently.
Requirements
This package requires Laravel's built-in authentication system to be set up and configured.
Installation and Setup
Follow these steps to integrate laravel-content
into your Laravel project:
-
Scaffold Laravel Authentication:
php artisan make:auth
-
Run Initial Migrations:
php artisan migrate
-
Update User Model Namespace: Move your
User.php
model from theApp\
namespace toApp\Http\Models\
.Before:
// App/User.php namespace App;
After:
// App/Http/Models/User.php namespace App\Http\Models;
-
Create Default Admin User: Ensure you have a default administrator user with an
id
of1
in yourusers
table. This user will be recognized as the admin by the package. -
Install the Package:
composer require webappid/content
-
Run Package Migrations:
php artisan migrate
(Note: This step is crucial to create the necessary tables for
laravel-content
.) -
Seed Default Data:
php artisan webappid:content:seed
This command will insert essential default data for the package. It's designed to only insert new data and will not overwrite any existing information in your database.
Support
If you have any questions or encounter issues while using this package, please don't hesitate to reach out. You can email me at dyan.galih@gmail.com.
Acknowledgements
A big thank you to everyone who contributed to the development and improvement of this package!