Added models, migrations and controllers
This commit adds the logical structure for the app.
This commit is contained in:
10
app/Application.php
Normal file
10
app/Application.php
Normal file
@@ -0,0 +1,10 @@
|
||||
<?php
|
||||
|
||||
namespace App;
|
||||
|
||||
use Illuminate\Database\Eloquent\Model;
|
||||
|
||||
class Application extends Model
|
||||
{
|
||||
//
|
||||
}
|
10
app/Appointment.php
Normal file
10
app/Appointment.php
Normal file
@@ -0,0 +1,10 @@
|
||||
<?php
|
||||
|
||||
namespace App;
|
||||
|
||||
use Illuminate\Database\Eloquent\Model;
|
||||
|
||||
class Appointment extends Model
|
||||
{
|
||||
//
|
||||
}
|
10
app/Form.php
Normal file
10
app/Form.php
Normal file
@@ -0,0 +1,10 @@
|
||||
<?php
|
||||
|
||||
namespace App;
|
||||
|
||||
use Illuminate\Database\Eloquent\Model;
|
||||
|
||||
class Form extends Model
|
||||
{
|
||||
//
|
||||
}
|
10
app/Http/Controllers/ApplicationController.php
Normal file
10
app/Http/Controllers/ApplicationController.php
Normal file
@@ -0,0 +1,10 @@
|
||||
<?php
|
||||
|
||||
namespace App\Http\Controllers;
|
||||
|
||||
use Illuminate\Http\Request;
|
||||
|
||||
class ApplicationController extends Controller
|
||||
{
|
||||
//
|
||||
}
|
10
app/Http/Controllers/AppointmentController.php
Normal file
10
app/Http/Controllers/AppointmentController.php
Normal file
@@ -0,0 +1,10 @@
|
||||
<?php
|
||||
|
||||
namespace App\Http\Controllers;
|
||||
|
||||
use Illuminate\Http\Request;
|
||||
|
||||
class AppointmentController extends Controller
|
||||
{
|
||||
//
|
||||
}
|
10
app/Http/Controllers/FormController.php
Normal file
10
app/Http/Controllers/FormController.php
Normal file
@@ -0,0 +1,10 @@
|
||||
<?php
|
||||
|
||||
namespace App\Http\Controllers;
|
||||
|
||||
use Illuminate\Http\Request;
|
||||
|
||||
class FormController extends Controller
|
||||
{
|
||||
//
|
||||
}
|
10
app/Http/Controllers/LogController.php
Normal file
10
app/Http/Controllers/LogController.php
Normal file
@@ -0,0 +1,10 @@
|
||||
<?php
|
||||
|
||||
namespace App\Http\Controllers;
|
||||
|
||||
use Illuminate\Http\Request;
|
||||
|
||||
class LogController extends Controller
|
||||
{
|
||||
//
|
||||
}
|
10
app/Http/Controllers/ProfileController.php
Normal file
10
app/Http/Controllers/ProfileController.php
Normal file
@@ -0,0 +1,10 @@
|
||||
<?php
|
||||
|
||||
namespace App\Http\Controllers;
|
||||
|
||||
use Illuminate\Http\Request;
|
||||
|
||||
class ProfileController extends Controller
|
||||
{
|
||||
//
|
||||
}
|
10
app/Http/Controllers/ResponseController.php
Normal file
10
app/Http/Controllers/ResponseController.php
Normal file
@@ -0,0 +1,10 @@
|
||||
<?php
|
||||
|
||||
namespace App\Http\Controllers;
|
||||
|
||||
use Illuminate\Http\Request;
|
||||
|
||||
class ResponseController extends Controller
|
||||
{
|
||||
//
|
||||
}
|
10
app/Http/Controllers/StaffProfileController.php
Normal file
10
app/Http/Controllers/StaffProfileController.php
Normal file
@@ -0,0 +1,10 @@
|
||||
<?php
|
||||
|
||||
namespace App\Http\Controllers;
|
||||
|
||||
use Illuminate\Http\Request;
|
||||
|
||||
class StaffProfileController extends Controller
|
||||
{
|
||||
//
|
||||
}
|
10
app/Http/Controllers/VacancyController.php
Normal file
10
app/Http/Controllers/VacancyController.php
Normal file
@@ -0,0 +1,10 @@
|
||||
<?php
|
||||
|
||||
namespace App\Http\Controllers;
|
||||
|
||||
use Illuminate\Http\Request;
|
||||
|
||||
class VacancyController extends Controller
|
||||
{
|
||||
//
|
||||
}
|
10
app/Http/Controllers/VoteController.php
Normal file
10
app/Http/Controllers/VoteController.php
Normal file
@@ -0,0 +1,10 @@
|
||||
<?php
|
||||
|
||||
namespace App\Http\Controllers;
|
||||
|
||||
use Illuminate\Http\Request;
|
||||
|
||||
class VoteController extends Controller
|
||||
{
|
||||
//
|
||||
}
|
10
app/Log.php
Normal file
10
app/Log.php
Normal file
@@ -0,0 +1,10 @@
|
||||
<?php
|
||||
|
||||
namespace App;
|
||||
|
||||
use Illuminate\Database\Eloquent\Model;
|
||||
|
||||
class Log extends Model
|
||||
{
|
||||
//
|
||||
}
|
10
app/Profile.php
Normal file
10
app/Profile.php
Normal file
@@ -0,0 +1,10 @@
|
||||
<?php
|
||||
|
||||
namespace App;
|
||||
|
||||
use Illuminate\Database\Eloquent\Model;
|
||||
|
||||
class Profile extends Model
|
||||
{
|
||||
//
|
||||
}
|
10
app/Response.php
Normal file
10
app/Response.php
Normal file
@@ -0,0 +1,10 @@
|
||||
<?php
|
||||
|
||||
namespace App;
|
||||
|
||||
use Illuminate\Database\Eloquent\Model;
|
||||
|
||||
class Response extends Model
|
||||
{
|
||||
//
|
||||
}
|
10
app/StaffProfile.php
Normal file
10
app/StaffProfile.php
Normal file
@@ -0,0 +1,10 @@
|
||||
<?php
|
||||
|
||||
namespace App;
|
||||
|
||||
use Illuminate\Database\Eloquent\Model;
|
||||
|
||||
class StaffProfile extends Model
|
||||
{
|
||||
//
|
||||
}
|
10
app/Vacancy.php
Normal file
10
app/Vacancy.php
Normal file
@@ -0,0 +1,10 @@
|
||||
<?php
|
||||
|
||||
namespace App;
|
||||
|
||||
use Illuminate\Database\Eloquent\Model;
|
||||
|
||||
class Vacancy extends Model
|
||||
{
|
||||
//
|
||||
}
|
10
app/Vote.php
Normal file
10
app/Vote.php
Normal file
@@ -0,0 +1,10 @@
|
||||
<?php
|
||||
|
||||
namespace App;
|
||||
|
||||
use Illuminate\Database\Eloquent\Model;
|
||||
|
||||
class Vote extends Model
|
||||
{
|
||||
//
|
||||
}
|
Reference in New Issue
Block a user