created User-Model and Employee-Model
This commit is contained in:
25
app/Controllers/Http/EmployeesController.ts
Normal file
25
app/Controllers/Http/EmployeesController.ts
Normal file
@@ -0,0 +1,25 @@
|
||||
import { HttpContextContract } from '@ioc:Adonis/Core/HttpContext'
|
||||
|
||||
export default class EmployeesController {
|
||||
public async index ({}: HttpContextContract) {
|
||||
|
||||
}
|
||||
|
||||
public async create ({}: HttpContextContract) {
|
||||
}
|
||||
|
||||
public async store ({}: HttpContextContract) {
|
||||
}
|
||||
|
||||
public async show ({}: HttpContextContract) {
|
||||
}
|
||||
|
||||
public async edit ({}: HttpContextContract) {
|
||||
}
|
||||
|
||||
public async update ({}: HttpContextContract) {
|
||||
}
|
||||
|
||||
public async destroy ({}: HttpContextContract) {
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user