Download the PHP package jasminecms/jasmine without Composer
On this page you can find all versions of the php package jasminecms/jasmine. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Informations about the package jasmine
Jasmine CMS
A Laravel based CMS inspired by Voyager.
Screenshots
Login
Bread index
Bread Edit
Note
Jasmine uses alexusmai/laravel-file-manager
If you are using it already or planing to,
you might need to tweak some configurations to prevent conflicts.
Installation
Require JasmineCMS in your new or existing laravel app
composer require jasminecms/jasmine
Link jasmine public assets to your public folder
php artisan jasmine:link-public-assets
Migrate the database (be sure to make any changes to the default laravel migration prior)
php artisan migrate
Create a user (1st user is super admin)
php artisan jasmine:create-user
Add Jasmine routes to your routes/web.php
routes file (you may change the prefix to anything you like)
Add Jasmine api routes to your routes/api.php
routes file (you may change the prefix to anything you like)
You can now log in to Jasmine,
Navigate to /jasmine
And login
You can register Jasmine assets in your AppServiceProvider
Locales
Jasmine supports multilingual assets, define your content languages like so
Breadables
Breadables can be any model
Run php artisan make:jasmine-model Post
to create a Jasmine Model
In your model implement
Jasmine\Jasmine\Bread\BreadableInterface
use trait Jasmine\Jasmine\Bread\Breadable
if the model has multilingual columns, also use trait
Jasmine\Jasmine\Bread\Translatable;
implement missing method
then register your model in AppServiceProvider
Pages
Pages are very similar to models, but function as a single entity instead of a table
Run php artisan make:jasmine-model Post
to create a Jasmine Model
Register your pages in AppServiceProvider
Interface locale
You can translate Jasmine interface to any language like so
the send parameter will accept either a path to your json file or an array of translations
you can copy /resources/front-lang/he.json
to get started quickly.
Custom assets
If for some reason you wish to load custom javascript or css you can do it like so
Permissions
TODO
SideBarMenuItems
You can add items to the sidebar menu like so
TODO: registerSideBarSubMenuItem
Oauth2 SSO
You can register oauth2 providers to enable sso login to jasmine
Facebook example