Jul 31, 2020
4
Level 3
Hide Create and Edit button
Is there a way to hide this 2 bottoms from showing or is not possible ?
Please or to participate in this conversation.
Is there a way to hide this 2 bottoms from showing or is not possible ?
hi,
i'm curios if i can hide it something like in css display:none;
It is possible. But there are trillions of ways to do it.
Please provide more details about when you want them to short or not. Are you talking about a blade view or using Vue or other JS framework?
Without context, we cannot answer much.
@smashing hiding a button using css isn’t that great as if you turn off css all your buttons appear. Also bots can spider your pages and they’ll be able to see your buttons in the DOM.
There’s two steps to security here, if you think worse case. Firstly ensure the route being called by the button has a permissions check on it so it can’t be hit by someone who knows the url. Secondly remove the button element from the DOM so there is nothing to click.
Security by obscurity (hiding stuff) isn’t much security - it’s like hiding your key under the mat by your front door. Sometimes that’s ok but it’s not a proper fix
Please or to participate in this conversation.