I'm currently working on a university project where i need to create a LED laser light that once turned on will stay on for 10 seconds and i have no idea where to start. Any ideas would be greatly appreciated (the simpler the better)
For a simple timer, you have a few options.
1) simple RC circuit, that is based on the time constant of a resistor and capacitor charging and discharging.
2) simple RC circuit using 555 timer. This packages the RC approach into one IC and is a bit more convenient.
3) hardware digital timer, based on counting (or dividing) the pulse stream from a simple oscillator circuit. There are ICs for this that make it easy, like the 74HC4060. This can be more accurate and more stable over temperature and time compared to the RC approach.
4) microprocessor. These are probably too complex for your application, but it is fairly easy to design a PIC or AVR microprocessor circuit to form a simple timer. Might sound like overkill, but the smallest processors are close to the cost of a 555 timer chip. This approach is accurate and flexible.