Files
symfonycast.local/app/Http/Controllers/ChapterController.php

17 lines
426 B
PHP

<?php
namespace App\Http\Controllers;
use App\Http\SymfonyCastDl\SymfonyCastDlService;
use App\Models\Chapter;
class ChapterController extends Controller
{
public function index(Chapter $chapter, SymfonyCastDlService $symfonyCastDlService)
{
$symfonyCastDlService->videoSize($chapter);
$symfonyCastDlService->downloadFile($chapter);
return view('chapter.index', compact('chapter'));
}
}