<?php
namespace {{namespace}}\Features\{{plural}}\Controllers;

use {{namespace}}\Features\{{plural}}\Repositories\{{singular}}Interface;
use App\Http\Controllers\Controller;

class {{plural}}Controller extends Controller {

    /**
     * @var {{singular}}Interface
     */
    protected ${{singularLower}};

    /**
     * @param {{singular}}Interface ${{singularLower}}
     */
    public function __construct({{singular}}Interface ${{singularLower}}) {
        $this->{{singularLower}} = ${{singularLower}};
    }

    public function index()
    {

    }
}