WorkOrderNote.php 338 B

123456789101112131415161718
  1. <?php
  2. namespace App;
  3. use Illuminate\Database\Eloquent\Model;
  4. class WorkOrderNote extends Model
  5. {
  6. protected $table = 'wonotes';
  7. protected $primaryKey = 'noteid';
  8. const CREATED_AT = 'notetime';
  9. const UPDATED_AT = null;
  10. public function workOrder() {
  11. return $this->belongsTo('App\WorkOrder', 'woid');
  12. }
  13. }