bubalubs / gravity
A Flexible Laravel CMS
Requires
- php: >=7.2
- illuminate/support: ^6.0
- intervention/image: ^2.5
- spatie/laravel-medialibrary: ^7.17
- spatie/laravel-permission: ^3.3
- dev-master
- 0.2.16
- 0.2.15
- 0.2.14
- 0.2.13
- 0.2.12
- 0.2.11.2
- 0.2.11.1
- 0.2.11
- 0.2.10.1
- 0.2.10
- 0.2.9
- 0.2.8
- 0.2.7.4
- 0.2.7.3
- 0.2.7.2
- 0.2.7.1
- 0.2.7
- 0.2.6
- 0.2.5.3
- 0.2.5.2
- 0.2.5.1
- 0.2.5
- 0.2.4
- 0.2.3.1
- 0.2.3
- 0.2.2.3
- 0.2.2.2
- 0.2.2.1
- 0.2.2
- 0.2.1
- 0.2
- 0.1.1
- 0.1
- dev-dependabot/npm_and_yarn/npm_and_yarn-894eb884c1
- dev-tiptap-v2-upgrade
This package is auto-updated.
Last update: 2025-04-04 00:39:37 UTC
README
Gravity is a Laravel package that sets up a light flexible CMS with an admin control panel
Installation
Install using composer
composer require bubalubs/gravity
Create database tables by running migrations
php artisan migrate
Publish CSS/JS files for admin control panel
php artisan vendor:publish --tag=public
Add the HasRoles Trait to your User model
use Spatie\Permission\Traits\HasRoles;
class User extends Authenticatable
{
use Notifiable, HasRoles;
...
To get going with basic auth, you can use Laravel Breeze
Usage
Using blade templating, you can output the CMS values.
To ouput global content use {{ $globalContent['field-name']}}
To show page content use {{ $content['field-name'] }}
Entities (Models)
Entities allow you to work with a custom Laravel model and adds CRUD options to the admin.
To work with images on an entity your model must implement the following interface and trait:
use Illuminate\Database\Eloquent\Model;
use Spatie\MediaLibrary\HasMedia\HasMedia;
use Spatie\MediaLibrary\HasMedia\HasMediaTrait;
class YourModel extends Model implements HasMedia
{
use HasMediaTrait;
...
Customizing Views
Publish view files to your laravel view directory then edit them to make changes
php artisan vendor:publish --provider=Bubalubs\Gravity\GravityServiceProvider
Updating
Update to the latest views (This will overwrite any changes you have made)
php artisan vendor:publish --provider=Bubalubs\Gravity\GravityServiceProvider --tag=public --force
Thanks
Thanks to spatie for their awesome libraries that this package relies on for permissions and media library!