v1.5.9 Added and fixed preview, the only problem is that images on event, guide category and guide resource id is not display on the different pages

This commit is contained in:
neerholt
2021-04-10 01:43:05 +02:00
parent abe4a9dda9
commit dd7acc1d24
19 changed files with 530 additions and 262 deletions
@@ -275,4 +275,11 @@ class GuideController extends Controller
return Response($output);
}
}
public function previewPages(Request $request){
$event = Guide::find($request->preview);
$convertToJsonArray = json_encode($event);
return $convertToJsonArray;
}
}