Вам не нужно ->getClientOrginalName();
после функциональности магазина
Laravel store functon возвращает полный путь к файлу, чтобы вы могли сделать это
$headers->text=$request->input('text');
$headers->imgName = $request->file('imgName')->getClientOriginalName(); // Here you can get the file name.
if (request()->hasFile('imgName')){
$headers->image_path = request()->imgName->store('images','public');
// $headers->image_path <--- this is dummy. just to give an example you can have the path of file
}
$headers->save();