Employee.php 448 B

123456789101112131415161718192021222324
  1. <?php
  2. namespace App\Models;
  3. use Illuminate\Database\Eloquent\Factories\HasFactory;
  4. use Illuminate\Database\Eloquent\Model;
  5. class Employee extends Model
  6. {
  7. use HasFactory;
  8. protected $fillable = ['firstname', 'lastname', 'salary', 'phone'];
  9. public function workShifts() {
  10. return $this->belongsToMany('App\Models\Work_shift');
  11. }
  12. public function orders() {
  13. return $this->hasMany('App\Models\Order');
  14. }
  15. }