Download the PHP package hellotreedigital/cms without Composer
On this page you can find all versions of the php package hellotreedigital/cms. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Please rate this library. Is it a good library?
Informations about the package cms
Installation:
- Create the database and update your .env file
-
Add the below to config/auth.php:
'guards' => [ ... 'admin' => [ 'driver' => 'session', 'provider' => 'admins', ], ... ], 'providers' => [ ... 'admins' => [ 'driver' => 'eloquent', 'model' => Hellotreedigital\Cms\Models\Admin::class, ], ... ],
- Configure the filesystem in config/filesystem.php, use 'public' as default value if none
-
Run:
composer require hellotreedigital/cms
-
To create the admin:
php artisan admin:create --name=example [email protected] --password=123
Publishables:
-
CMS config:
php artisan vendor:publish --tag=cms_config --force
-
CMS intouch config:
php artisan vendor:publish --tag=cms_intouch_config --force
-
CMS ripply config:
php artisan vendor:publish --tag=cms_ripply_config --force
-
CMS scratch & courage config:
php artisan vendor:publish --tag=cms_scratch_and_courage_config --force
-
CMS imaginelabs. config:
php artisan vendor:publish --tag=cms_imagine_labs_config --force
-
CMS Purple Brains config:
php artisan vendor:publish --tag=cms_purple_brains_config --force
-
CMS routes:
php artisan vendor:publish --tag=cms_routes --force
-
CMS translatables:
php artisan vendor:publish --tag=translatable --force
Http Logs Installation:
-
Add the below to protected $middleware in app/Http/Kernel.php:
\Hellotreedigital\Cms\Middlewares\HttpLogsMiddleware::class,
Preview Checking On The Website:
-
If
auth('admin')->check() && request('ht_preview_mode')
returns true, then preview mode is on, you can get the preview data fromsession('ht-preview-mode-request')
Code example:$row = auth('admin')->check() && request('ht_preview_mode') ? session('ht-preview-mode-request') : $row = Model::findOrFail($id);
All versions of cms with dependencies
PHP Build Version
Package Version
Requires
doctrine/dbal Version
3.*
astrotomic/laravel-translatable Version *
tinify/tinify Version *
astrotomic/laravel-translatable Version *
tinify/tinify Version *
The package hellotreedigital/cms contains the following files
Loading the files please wait ....