Created
March 8, 2018 01:25
-
-
Save jsdecena/9a7e44104db06dc3fe06f3bfdd4e8520 to your computer and use it in GitHub Desktop.
Carousel Controller Class
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
namespace App\Http\Controllers\Admin\Carousels; | |
use App\Http\Controllers\Controller; | |
class CarouselController extends Controller | |
{ | |
/** | |
* @return \Illuminate\Contracts\View\Factory|\Illuminate\View\View | |
*/ | |
public function create() | |
{ | |
return view('admin.carousels.create'); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment