vadiasov/tracks-admin

This package creates DB table tracks (music tracks). It uploads tracks. It serves CRUD pages of tracks.

Installs: 31

Dependents: 0

Suggesters: 0

Security: 0

Stars: 0

Watchers: 0

Forks: 0

Open Issues: 0

Language:HTML

pkg:composer/vadiasov/tracks-admin

2.0.0 2018-03-16 12:13 UTC

This package is not auto-updated.

Last update: 2025-09-28 10:26:54 UTC


README

Goals

This package is very specific package.

This package:

  • creates DB table tracks (music tracks)
  • uploads tracks with package vadiasov/uploads
  • outputs an index of tracks of a selected album
  • except standard features the index page includes
    • player with controls for each track
    • button "Tracks Ordering" to order tracks with vadiasov/ordering.

Using

Package has own routes.

Installation

1.Create row in the application root composer:

"require": {
      ...
        "vadiasov/tracks-admin": "^x.x.x",
      ...  
    },

2.Run in your terminal:

cd your_application_root
composer update

3.This package is developed with discovery feature. So it must itself to create row in a config/app.com about ServiceProvider:

/*
 * Package Service Providers...
 */
...
Vadiasov\TracksAdmin\TracksServiceProvider::class,