Nessuna descrizione

Quinquennium.php 264B

12345678910111213141516
  1. <?php
  2. class Quinquennium extends Eloquent
  3. {
  4. protected $fillable = array('');
  5. protected $table = 'quinquenniums';
  6. // return all the five year plans in the quinquennium
  7. public function fiveYearPlans()
  8. {
  9. return $this->hasMany('FiveYearPlan');
  10. }
  11. }