'date', 'salary' => 'decimal:2', 'workers_needed' => 'integer', ]; public function employer() { return $this->belongsTo(User::class, 'employer_id'); } public function category() { return $this->belongsTo(WorkerCategory::class, 'category_id'); } public function applications() { return $this->hasMany(JobApplication::class, 'job_id'); } }