Is it somehow possible to render maps when using redirect?
Like so, from controller, where I don't have one specific static view:
// Controller
public function mapEdit($id)
{
$data = Data::findOrFail($id);
Ok, fixed it by putting maps in other controller to avoid redirects. I guess no one should make redirects from one controller to another. Rookie mistake. Sorry for spam.
Hi,
Is it somehow possible to render maps when using redirect? Like so, from controller, where I don't have one specific static view: // Controller public function mapEdit($id) { $data = Data::findOrFail($id);
If I pass this data to static view, all shows up and works great, but I was wondering how can this be done in cases like this?