FunMenuDetail.php 238B

12345678910111213141516
  1. <?php
  2. namespace App;
  3. use Illuminate\Database\Eloquent\Model;
  4. class FunMenuDetail extends Model
  5. {
  6. protected $table = 'funmenudetail';
  7. public function getFunctions()
  8. {
  9. return $this->hasMany('App\Functions');
  10. }
  11. }