vadiasov / tracks-admin
This package creates DB table tracks (music tracks). It uploads tracks. It serves CRUD pages of tracks.
Installs: 30
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 0
Forks: 0
Open Issues: 0
Language:HTML
Requires
- php: >=7.0
- illuminate/support: 5.*
This package is not auto-updated.
Last update: 2025-03-30 07:41:17 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,