validated()); return redirect()->route('admin.owned.index')->with('success', 'Fanlisting added!'); } /** * Manage the specified resource. * * @return \Illuminate\Http\Response */ public function manage(Owned $owned) { } /** * Show the form for editing the specified resource. * * @return \Illuminate\Http\Response */ public function edit(Owned $owned) { } /** * Update the specified resource in storage. * * @return \Illuminate\Http\Response */ public function update(UpdateOwnedRequest $request, Owned $owned) { } /** * Remove the specified resource from storage. * * @return \Illuminate\Http\Response */ public function destroy(Owned $owned) { } }