/**
  * Build the table.
  */
 public function build()
 {
     parent::build();
     $this->dispatch(new SetActiveFilters($this));
     $this->dispatch(new BuildTables($this));
     $this->dispatch(new MergeRows($this));
     if (app('request')->isMethod('post')) {
         $this->dispatch(new SetActiveActions($this));
         $this->dispatch(new PostTables($this));
     }
 }
 /**
  * Build the table.
  */
 public function build()
 {
     $this->dispatch(new SetDefaultProperties($this));
     parent::build();
 }