Move bottons panel in left/right side or disable it. Note: This will not disable button actions
public function buttons_panel()
{
$xcrud = get_xcrud();
$xcrud->table('offices');
$xcrud->buttons_position('left'); // can be left, right or none
$data['content'] = $xcrud->render();
return view('demos', $data);
}