Ben laravel'in singleton request nesnesini kullandığım denetleyicinin içine kurucu method ile enjekte edip farklı post verileri için basit yardımcı methodlar yazıyorum.
örnek
/**
* to get elements which are about only product model
*
* @return array
*/
private function getProductInPost() {
return $this->request->except([
'price',
'colors',
'image',
]);
}