jaydeepukani/craftable-pro

New generation of administration

v2.0.4 2024-12-20 12:05 UTC

README

Latest Version on Packagist GitHub Tests Action Status GitHub Code Style Action Status Total Downloads

Installation

You can install the package via composer:

composer require jaydeepukani/craftable-pro

Then you need to install the package (it will publish resources, migrations, configs, edit some configuration, ...) with:

php artisan craftable-pro:install

and finally you run:

npm install
npm run craftable-pro:dev

Development

To develop this package, we recommend you to start on a fresh Laravel instance using Sail:

curl -s "https://laravel.build/craftable-pro-dev" | bash

cd craftable-pro-dev

./vendor/bin/sail up -d

and then run these commands:

composer require jaydeepukani/craftable-pro
./vendor/bin/sail artisan craftable-pro:install
./vendor/bin/sail artisan vendor:publish --tag=craftable-pro-seeders
./vendor/bin/sail artisan db:seed --class=DummyDataSeeder
./vendor/bin/sail npm install
./vendor/bin/sail npm run craftable-pro:dev

Testing

composer test