vadiasov/tracks-admin

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

2.0.0 2018-03-16 12:13 UTC

This package is not auto-updated.

Last update: 2024-05-12 03:08:53 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,