Logo
Explore Help
Register Sign In
miguel456/rbrecruiter
1
0
Fork 1
You've already forked rbrecruiter
Code Issues Pull Requests 1 Projects Releases 2 Wiki Activity
rbrecruiter/app/Form.php

22 lines
299 B
PHP
Raw Normal View History

Added models, migrations and controllers This commit adds the logical structure for the app.
2020-04-29 18:15:54 +01:00
<?php
namespace App;
use Illuminate\Database\Eloquent\Model;
class Form extends Model
{
Store form structure in DB
2020-05-06 05:42:55 +01:00
public $fillable = [
'formName',
'formStructure',
'formStatus'
];
Add save & update functionality to positions Tooltips also added, as well as a general configuration file for Mojang Status URL. Relationships were also added between forms and Vacancies. Status verification for the dashboard was moved to a Service Provider, where it adds log entries when cache expires. Authentication controllers were also updated to reflect the new dashboard URL.
2020-05-08 00:24:56 +01:00
public function vacancy()
{
return $this->hasMany('App\Vacancy', 'vacancyFormID');
}
Added models, migrations and controllers This commit adds the logical structure for the app.
2020-04-29 18:15:54 +01:00
}
Reference in New Issue Copy Permalink
Powered by Gitea Version: 1.23.6 Page: 58ms Template: 6ms
English
Bahasa Indonesia Deutsch English Español Français Gaeilge Italiano Latviešu Magyar nyelv Nederlands Polski Português de Portugal Português do Brasil Suomi Svenska Türkçe Čeština Ελληνικά Български Русский Українська فارسی മലയാളം 日本語 简体中文 繁體中文(台灣) 繁體中文(香港) 한국어
Licenses API