I want to get minitoc for each section. My following code provides the minitoc for the whole chapter but I need minitoc for only sections. Any help will be highly appreciated. Thanks
% Document Class
\documentclass[a4paper,12pt]{book}
\usepackage[english]{babel}
\usepackage{blindtext}
\usepackage{minitoc}
% Begin Document
\begin{document}
\dominitoc
\tableofcontents
\mainmatter
%\pagestyle{Special}
\chapter{First Chapter}
\minitoc
\section{Introduction}
\minitoc
\subsection{Intro1}
\subsection{Intro2}
% Blind Text
\blindtext[1]
\section{Material \& Method}
% Blind Text
\blindmathpaper
% End Document
\end{document}

minitocdocumentation says that section ToCs are not available for thereportandbookclasses. – LaRiFaRi Mar 30 '15 at 15:11