Spaces:
Running
Running
File size: 640 Bytes
40dca3b | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 | <?php
namespace App\Http\Controllers\WebControllers\V1\Backend;
use App\Http\Controllers\BaseController;
use App\Services\ComicServices;
use App\Services\GenreServices;
use Illuminate\Http\Request;
class LandingController extends BaseController
{
private $comicService;
private $genreService;
public function __construct(ComicServices $comicService, GenreServices $genreService)
{
$this->genreService = $genreService;
$this->comicService = $comicService;
parent::__construct();
}
public function index(Request $request)
{
return view('Backend.pages.dashboard.index');
}
}
|