A relatively automatic CRUD backend administration panel for Laravel: Otter
Otter is a Laravel package which we can use to create an admin control panel easily.
Introduction
Otter was created as an open-source alternative to Laravel Nova. The backend administration panel is built with the beautiful tabler template and follows the structure of the popular laravel extension packages like horizon and telescope.
Installation
Install Otter with composer:
$ composer require poowf/otter
In Laravel 5.5+, service providers and aliases are automatically registered. If you're using Laravel 5.5+, skip ahead directly to step 2.
Once the composer installation completes, all you need to do is add the service provider. Open config/app.php, and make the following changes:
Add a new item to the providers array:
Poowf\Otter\OtterServiceProvider::class,
Install all the relevant Otter assets:
If you are updating Otter, run php artisan otter:publish instead
php artisan otter:install
Source Code
This post is submitted by our members. Submit a new post.
Tags: Tutorials Packages Sources Laravel 5.8 Laravel 5.7 Laravel 5.6 Laravel 5.5 Laravel 5.4 Laravel 5.3 Laravel 5 Beginner