FileMaster
Search
Toggle Dark Mode
Home
/
.
/
wp-content
/
plugins
/
surecart
/
app
/
src
/
Controllers
/
Rest
Edit File: DownloadsController.php
<?php namespace SureCart\Controllers\Rest; use SureCart\Models\Download; /** * Handle Download requests through the REST API */ class DownloadsController extends RestController { /** * Class to make the requests. * * @var string */ protected $class = Download::class; /** * Always fetch with media * * @var array */ protected $with = [ 'media' ]; }
Save
Back