PHPackages                             sequelone/songs-crud - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. [Admin Panels](/categories/admin)
4. /
5. sequelone/songs-crud

ActiveLibrary[Admin Panels](/categories/admin)

sequelone/songs-crud
====================

An admin panel for music, using Backpack\\CRUD on Laravel 5.

v1.0.0(4y ago)23proprietaryPHP

Since May 8Pushed 3y ago1 watchersCompare

[ Source](https://github.com/SequelONE/songs-crud)[ Packagist](https://packagist.org/packages/sequelone/songs-crud)[ Docs](https://github.com/SequelONE/songs-crud)[ RSS](/packages/sequelone-songs-crud/feed)WikiDiscussions main Synced 3d ago

READMEChangelog (1)Dependencies (7)Versions (2)Used By (0)

Backpack\\SongsCRUD
===================

[](#backpacksongscrud)

[![Latest Version on Packagist](https://camo.githubusercontent.com/cbca093e36001ae3c14b25db296bbf147842b30438c57523e494dacf148f7c74/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f762f73657175656c6f6e652f536f6e6773435255442e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/sequelone/SongsCRUD)[![Software License](https://camo.githubusercontent.com/5a202d5327ab4ae3bf5cc50fcfa3d2f0823d818a4f115a027d8176dcb996c4d4/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f6c6963656e73652d6475616c2d626c75653f7374796c653d666c61742d737175617265)](LICENSE.md)[![Build Status](https://camo.githubusercontent.com/30a6b2b72af5bde656f5a1860161aada84e4a323617c72bbdc57723c54ca499b/68747470733a2f2f696d672e736869656c64732e696f2f7472617669732f4c61726176656c2d4261636b7061636b2f73657175656c6f6e652f6d61737465722e7376673f7374796c653d666c61742d737175617265)](https://travis-ci.org/sequelone/SongsCRUD)[![Coverage Status](https://camo.githubusercontent.com/1c3a39a20528cbb441c8ea014e0347c31ecec4bb416a7c0dc66b4bc0c26323ce/68747470733a2f2f696d672e736869656c64732e696f2f7363727574696e697a65722f636f7665726167652f672f73657175656c6f6e652f536f6e6773435255442e7376673f7374796c653d666c61742d737175617265)](https://scrutinizer-ci.com/g/sequelone/SongsCRUD/code-structure)[![Quality Score](https://camo.githubusercontent.com/4ff4da74eac1408e788fbc00256af3f8f7ced3d80df7f7176aa32af529f8a1ce/68747470733a2f2f696d672e736869656c64732e696f2f7363727574696e697a65722f672f73657175656c6f6e652f536f6e6773435255442e7376673f7374796c653d666c61742d737175617265)](https://scrutinizer-ci.com/g/sequelone/SongsCRUD)[![Total Downloads](https://camo.githubusercontent.com/4eb7683e18b13bf4f297bb2163cec727ab7390a19dae3df0ed2edda9d749a8ab/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f64742f73657175656c6f6e652f536f6e6773435255442e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/sequelone/SongsCRUD)

This package adds sections to the admin panel for creating a music portal. The scope of application is huge. From small labels to distributors.

Installation
------------

[](#installation)

Since SongsCRUD is just a Backpack\\CRUD example, you can choose to install it one of two ways.

\*\* Download and place files in your application\*\* (recommended; remember to also `composer require cviebrock/eloquent-sluggable`)

1. In your terminal, run:

```
composer require sequelone/songs-crud
```

2. Publish the migration:

```
php artisan vendor:publish --provider="SequelONE\SongsCRUD\SongsCRUDServiceProvider"

```

3. Run the migration to have the database table we need:

```
php artisan migrate

```

4. \[optional\] Add a menu item for it in `resources/views/vendor/backpack/base/inc/sidebar.blade.php` or `menu.blade.php`:

```

    {{ trans('songs-crud::songscrud.music') }}

         {{ trans('songs-crud::songscrud.releases') }}
         {{ trans('songs-crud::songscrud.labels') }}
         {{ trans('songs-crud::songscrud.artists') }}
         {{ trans('songs-crud::songscrud.types') }}
         {{ trans('songs-crud::songscrud.genres') }}
         {{ trans('songs-crud::songscrud.tracks') }}

```

5. \[optional\] If you need the browse field to upload images, please install [Laravel-Backpack/FileManager](https://github.com/Laravel-Backpack/FileManager#installation).

Extra Field Type
----------------

[](#extra-field-type)

### Shortlink

[](#shortlink)

Generates short links by click. You can add a new field type.

```
$this->crud->addField([
    'name' => 'shortlink',
    'label' => 'Shortlink (URL)',
    'type' => 'shortlink',
    'generate' => 'small_alphanumeric',
    'length' => 4,
    'hint' => 'Will be automatically generated from your name, if left empty.',
]);

```

The `length` parameter is responsible for the length of the generated short link.

Example:

```
'generate' => 'small_alphanumeric',
'length' => 4,

```

Output:

```
d2f8

```

Available options for the `generate` parameter.

**\#****Variable****Type**1global0123456789abcdefghijklmnopqrstuvwxyz!@#$%^&amp;\*()ABCDEFGHIJKLMNOPQRSTUVWXYZ2numeric01234567893smallabcdefghijklmnopqrstuvwxyz4small\_alphanumeric0123456789abcdefghijklmnopqrstuvwxyz5bigABCDEFGHIJKLMNOPQRSTUVWXYZ6big\_alphanumeric0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ7special!@#$%^&amp;\*()### Upload Tracks

[](#upload-tracks)

```
$this->crud->addField([
    'name' => 'shortlink',
    'label' => 'Shortlink (URL)',
    'type' => 'shortlink',
    'generate' => 'small_alphanumeric',
    'length' => 4,
    'hint' => 'Will be automatically generated from your name, if left empty.',
]);

```

Add in `/config/filesystems.php`

```
        'uploads' => [
            'driver' => 'local',
            'root'   => storage_path('uploads'), // that's where your backups are stored by default: storage/uploads
        ],

        'tracks' => [
            'driver' => 'local',
            'root'   => storage_path('uploads/tracks'), // that's where your backups are stored by default: storage/uploads
        ],

        'covers' => [
            'driver' => 'local',
            'root'   => storage_path('uploads/tracks/covers'), // that's where your backups are stored by default: storage/uploads
        ],

```

Console
-------

[](#console)

This command updates the database with the default release formats. You can use this command if you don't want to insert your data into the table.

```
php artisan songscrud:types

```

Executing this command loads all genres.

```
php artisan songscrud:genres

```

> WARNING! ACHTUNG! ВНИМАНИЕ!

Executing this command completely clears the `songs_types` and `songs_genres` tables.

```
php artisan songscrud:clear

```

Change log
----------

[](#change-log)

Please see [CHANGELOG](CHANGELOG.md) for more information what has changed recently.

Testing
-------

[](#testing)

```
$ composer test
```

Overwriting functionality
-------------------------

[](#overwriting-functionality)

If you need to modify how this works in a project:

- create a `routes/backpack/songscrud.php` file; the package will see that, and load *your* routes file, instead of the one in the package;
- create controllers/models that extend the ones in the package, and use those in your new routes file;
- modify anything you'd like in the new controllers/models;

Contributing
------------

[](#contributing)

Please see [CONTRIBUTING](CONTRIBUTING.md) and [CONDUCT](CONDUCT.md) for details.

Credits
-------

[](#credits)

- [Andrej Kopp](https://github.com/SequelONE)
- [All Contributors](../../contributors)

License
-------

[](#license)

Backpack is free for non-commercial use and Backpack PRO 69€/project for commercial use. Please see [License File](LICENSE.md) and [backpackforlaravel.com](https://backpackforlaravel.com/#pricing) for more information.

###  Health Score

22

—

LowBetter than 22% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity6

Limited adoption so far

Community7

Small or concentrated contributor base

Maturity48

Maturing project, gaining track record

 Bus Factor1

Top contributor holds 100% of commits — single point of failure

How is this calculated?**Maintenance (25%)** — Last commit recency, latest release date, and issue-to-star ratio. Uses a 2-year decay window.

**Popularity (30%)** — Total and monthly downloads, GitHub stars, and forks. Logarithmic scaling prevents top-heavy scores.

**Community (15%)** — Contributors, dependents, forks, watchers, and maintainers. Measures real ecosystem engagement.

**Maturity (30%)** — Project age, version count, PHP version support, and release stability.

###  Release Activity

Cadence

Unknown

Total

1

Last Release

1465d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/7eae8f6dc70ef8e7e86f9d76f7a2877fbcea11778deb1551f7eb39d7720d7752?d=identicon)[sequelone](/maintainers/sequelone)

---

Top Contributors

[![SequelONE](https://avatars.githubusercontent.com/u/14241611?v=4)](https://github.com/SequelONE "SequelONE (11 commits)")

---

Tags

backpackSongsCRUD

###  Code Quality

TestsPHPUnit

Code StylePHP\_CodeSniffer

### Embed Badge

![Health badge](/badges/sequelone-songs-crud/health.svg)

```
[![Health](https://phpackages.com/badges/sequelone-songs-crud/health.svg)](https://phpackages.com/packages/sequelone-songs-crud)
```

###  Alternatives

[backpack/pagemanager

Create admin panels for presentation websites on Laravel, using page templates and Backpack\\CRUD.

371522.6k6](/packages/backpack-pagemanager)[backpack/newscrud

An admin panel for news with categories and tags, using Backpack\\CRUD on Laravel 5.

236159.6k1](/packages/backpack-newscrud)[backpack/backupmanager

Admin interface for managing backups in Backpack, on Laravel 5.2+

340375.9k2](/packages/backpack-backupmanager)[backpack/menucrud

An admin panel for menu items, using Backpack\\CRUD on Laravel 6.

198258.5k1](/packages/backpack-menucrud)[backpack/langfilemanager

An interface to edit language files, for Laravel Backpack.

91230.1k1](/packages/backpack-langfilemanager)[backpack/revise-operation

Backpack interface for venturecraft/revisionable

43279.9k1](/packages/backpack-revise-operation)

PHPackages © 2026

[Directory](/)[Categories](/categories)[Trending](/trending)[Changelog](/changelog)[Analyze](/analyze)
