This issue is in connection with the classical Horner's method (https://en.wikipedia.org/wiki/Horner%27s_method).
Let us explain it WLOG on the $4 \times 4$ case:
$$M_4=\left(\begin{array}{rrrc} t& 0& 0& a\\
-1& t& 0& b\\
0& -1& t& c\\
0& 0& -1& d + t \end{array}\right)$$
We have to prove that its determinant $D_4$ is:
$$D_4=a+bt+ct^2+dt^3+t^4$$
i.e., we have to prove that (by Horner's "factorization"): :
$$D_4=(a+t\underbrace{(b+t(c+t(d+t)))}_{A})\tag{1}$$
This factorization happens to be in direct connection with cascade Laplace expansion(s) with respect to the first row. Indeed, in a first step:
$$D_4=(-1) \ a \ \underbrace{\det(\Delta)}_{(-1)^3} + t \det(M_3)\tag{2}$$
(Explanation of the subscript : $\Delta$ is a $3 \times 3$ upper triangular matrix with $-1$ entries on its diagonal).
otherwise said
$$D_4=(a+t(...))$$
which is in perfect matching with the beginning of expression (1) where the dots are exactly expression $A$.
Now we can proceed in the same way on the lower degree polynomial $A$, and then, again and again, this recurrence ending by a $1 \times 1$ matrix with unique entry $(d+t)$ whose determinant is... itself.
Remarks :
1) see this question and the interesting answer by Marc van Leeuwen.
2) it must be added that Horner's scheme has some other interesting applications ; among them, polynomial division and derivation, all well described in the article cited at the beginning of this answer.
3) one could object that the cancellation of minus signs in (2) may not happen in some other cases. In fact, in the general case of a $n \times n$ matrix, one has $(-1)^{n+1} a$ times the determinant of a triangular matrix having $n-1$ entries $(-1)$ on its diagonal, resulting into a final $+1$ coefficient.
vmatrix
for the determinant? – Bernard Jan 24 '20 at 22:37