I was wondering are there ways in laravel to not display id to source with developer tools inspection I have this form
{!! Form::model($data, ['route' => ['data.edit',$data->id], 'method' => 'get']) !!}
{{ Form::submit('Edit', array('class' => 'btn btn-info')) }}
{!! Form::close() !!}
With inspection user can see all forms like this ids and change one element id to another and on click he will edit the changed one? Are there any work around?
I would just check if that data entry belongs to the user in controller so at least user would not be able to delete or change entries that do not belong to him, but that is not the solution I want.