add publish module

This commit is contained in:
Arno Kaimbacher 2018-08-29 17:18:15 +02:00
parent 100f6db9a6
commit ffbbc04206
93 changed files with 8150 additions and 10228 deletions

View file

@ -73,7 +73,7 @@ class PersonController extends Controller
* @param int $id
* @return \Illuminate\Http\Response
*/
public function update($id, PersonRequest $request)
public function update(PersonRequest $request, $id)
{
$person = Person::findOrFail($id);
$input = $request->all();