Update CollectionController

This commit is contained in:
Daniel Supernault 2019-07-17 23:28:16 -06:00
parent 4b41f48972
commit 031c93915e
No known key found for this signature in database
GPG Key ID: 0DEF1C662C9033F7
1 changed files with 3 additions and 0 deletions

View File

@ -79,6 +79,9 @@ class CollectionController extends Controller
]);
$profile = Auth::user()->profile;
$collection = Collection::whereProfileId($profile->id)->findOrFail($id);
if($collection->items()->count() == 0) {
abort(404);
}
$collection->title = e($request->input('title'));
$collection->description = e($request->input('description'));
$collection->visibility = e($request->input('visibility'));