validated()); return back()->with("success", __("messages.success.store.company")); } /** * Display the specified resource. * * @param \App\Models\Company $company * @return \Illuminate\Http\Response */ public function show(Company $company) { // } /** * Show the form for editing the specified resource. * * @param \App\Models\Company $company * @return \Illuminate\Http\Response */ public function edit(Company $company) { // } /** * Update the specified resource in storage. * * @param \Illuminate\Http\Request $request * @param \App\Models\Company $company * @return \Illuminate\Http\Response */ public function update(Request $request, Company $company) { // } /** * Remove the specified resource from storage. * * @param \App\Models\Company $company * @return \Illuminate\Http\Response */ public function destroy(Company $company) { // } }