App\Http\Controllers\BlogController::__construct PHP Method

__construct() public method

BlogController constructor.
public __construct ( PostRepository $blog, CommentRepository $comment )
$blog App\Repositories\PostRepository
$comment App\Repositories\CommentRepository
    public function __construct(PostRepository $blog, CommentRepository $comment)
    {
        $this->blog = $blog;
        $this->comment = $comment;
        $this->middleware('auth', ['only' => ['create', 'store', 'update', 'edit', 'destroy']]);
    }