Problem with livewire view

What seems to be the problem:
The problem is that I work the livewire view with javascript datatables, when I do a crud I have problems when eliminating, the event that I emit to eliminate the data does it well, but when I change the size of the page the table shows some fields and others don’t

Do you have any screenshots or code examples:
component code

<?php namespace App\Http\Livewire\Entities; use Livewire\Component; use App\Models\Entity; class Entities extends Component { public $entities; public function mount() { $this->entities = Entity::all(); } public function destroy(Entity $entity,$id) { Entity::find($id)->delete(); $this->entities = Entity::all(); } public function render() { return view('livewire.entities.entities'); } } this is my problem ![Captura de pantalla de 2020-09-16 18-41-31|690x389](upload://gyMfn6deMeXICIVyiMbZOFn9Tpo.png) I am grateful if anyone could tell me or help me solve this problem.