16 lines
401 B
PHP
16 lines
401 B
PHP
|
|
<?php
|
||
|
|
|
||
|
|
namespace App\Http\Controllers\Api;
|
||
|
|
|
||
|
|
use App\Models\MultimediaCategory;
|
||
|
|
use App\Transformers\MediaTransformer;
|
||
|
|
|
||
|
|
class MultimediaController extends ApiController
|
||
|
|
{
|
||
|
|
public function index($category)
|
||
|
|
{
|
||
|
|
$medias = MultimediaCategory::where('id', $category)->with('medias')->get()->first()->medias;
|
||
|
|
return $this->respondWithCollection($medias, new MediaTransformer());
|
||
|
|
}
|
||
|
|
}
|