Notice.php 256 B

1234567891011121314
  1. <?php
  2. namespace App\Models;
  3. use Illuminate\Database\Eloquent\Model;
  4. class Notice extends Model
  5. {
  6. protected $table = 'notice';
  7. function notice_info() {
  8. $info = $this->select('title','type','content')->get();
  9. return $info;
  10. }
  11. }