Colconfig.php 252 B

12345678910111213
  1. <?php
  2. namespace App\Model;
  3. use Illuminate\Database\Eloquent\Model;
  4. class Colconfig extends Model
  5. {
  6. protected $table = 'colconfigs';
  7. public function colshow(){
  8. return $this->where('status','=','0')->select('columnid')->get();
  9. }
  10. }