laravel-enso/howtovideos

This package is abandoned and no longer maintained. The author suggests using the laravel-enso/how-to package instead.

Tutorial video management for Laravel Enso

Maintainers

Package info

github.com/laravel-enso/how-to

pkg:composer/laravel-enso/howtovideos

Statistics

Installs: 13 987

Dependents: 1

Suggesters: 0

Stars: 4

Open Issues: 0


README

License Stable Downloads PHP Issues Merge Requests

Description

How-To manages internal tutorial videos, posters, and tags for Laravel Enso.

The package exposes CRUD-style endpoints for videos, tags, and posters, stores the media and metadata, and is meant to back the Enso in-app help and tutorial area.

It is an Enso companion package rather than a standalone media platform.

Installation

Install the package:

composer require laravel-enso/how-to

Run the package migrations:

php artisan migrate

Features

  • Video create, update, show, list, and delete endpoints.
  • Tag create, update, list, and delete endpoints.
  • Poster upload, show, and delete endpoints.
  • Validation and resource classes for the tutorial media domain.

Usage

The package mounts its endpoints under:

  • howTo.videos.*
  • howTo.tags.*
  • howTo.posters.*

API

HTTP routes

  • GET api/howTo/videos
  • POST api/howTo/videos
  • PATCH api/howTo/videos/{video}
  • DELETE api/howTo/videos/{video}
  • GET api/howTo/videos/{video}
  • GET api/howTo/tags
  • POST api/howTo/tags
  • PATCH api/howTo/tags/{tag}
  • DELETE api/howTo/tags/{tag}
  • POST api/howTo/posters
  • DELETE api/howTo/posters/{poster}
  • GET api/howTo/posters/{poster}

Depends On

Required Enso packages:

Companion frontend package:

Contributions

are welcome. Pull requests are great, but issues are good too.

Thank you to all the people who already contributed to Enso!