Edit File: ReportController.php
<?php namespace App\Http\Controllers\Admin; use App\Services\Entity\ReportService; class ReportController extends BaseController { public function __construct(ReportService $service) { parent::__construct($service); } }
Back to File Manager