Merge remote-tracking branch 'origin/staging'
This commit is contained in:
0
Modules/Client/Config/.gitkeep
Normal file → Executable file
0
Modules/Client/Config/.gitkeep
Normal file → Executable file
0
Modules/Client/Config/config.php
Normal file → Executable file
0
Modules/Client/Config/config.php
Normal file → Executable file
0
Modules/Client/Console/.gitkeep
Normal file → Executable file
0
Modules/Client/Console/.gitkeep
Normal file → Executable file
0
Modules/Client/Database/Migrations/.gitkeep
Normal file → Executable file
0
Modules/Client/Database/Migrations/.gitkeep
Normal file → Executable file
0
Modules/Client/Database/Seeders/.gitkeep
Normal file → Executable file
0
Modules/Client/Database/Seeders/.gitkeep
Normal file → Executable file
0
Modules/Client/Database/Seeders/ClientDatabaseSeeder.php
Normal file → Executable file
0
Modules/Client/Database/Seeders/ClientDatabaseSeeder.php
Normal file → Executable file
0
Modules/Client/Database/factories/.gitkeep
Normal file → Executable file
0
Modules/Client/Database/factories/.gitkeep
Normal file → Executable file
0
Modules/Client/Entities/.gitkeep
Normal file → Executable file
0
Modules/Client/Entities/.gitkeep
Normal file → Executable file
0
Modules/Client/Http/Controllers/.gitkeep
Normal file → Executable file
0
Modules/Client/Http/Controllers/.gitkeep
Normal file → Executable file
0
Modules/Client/Http/Controllers/Api/AuthController.php
Normal file → Executable file
0
Modules/Client/Http/Controllers/Api/AuthController.php
Normal file → Executable file
0
Modules/Client/Http/Controllers/Api/ClaimController.php
Normal file → Executable file
0
Modules/Client/Http/Controllers/Api/ClaimController.php
Normal file → Executable file
0
Modules/Client/Http/Controllers/Api/ClaimReportController.php
Normal file → Executable file
0
Modules/Client/Http/Controllers/Api/ClaimReportController.php
Normal file → Executable file
0
Modules/Client/Http/Controllers/Api/CorporateDivisionController.php
Normal file → Executable file
0
Modules/Client/Http/Controllers/Api/CorporateDivisionController.php
Normal file → Executable file
0
Modules/Client/Http/Controllers/Api/CorporateManageController.php
Normal file → Executable file
0
Modules/Client/Http/Controllers/Api/CorporateManageController.php
Normal file → Executable file
3
Modules/Client/Http/Controllers/Api/CorporateMemberController.php
Normal file → Executable file
3
Modules/Client/Http/Controllers/Api/CorporateMemberController.php
Normal file → Executable file
@@ -33,6 +33,9 @@ class CorporateMemberController extends Controller
|
||||
case 'alarm-center':
|
||||
$members = $this->corporateMemberService->getAllMemberAlarmCenter($corporate_id, $request);
|
||||
return response()->json(Helper::paginateResources(DashboardMemberAlarmResources::collection($members)));
|
||||
case 'service-monitoring':
|
||||
$members = $this->corporateMemberService->getAllEncounter($corporate_id, $request);
|
||||
return response()->json(Helper::paginateResources(DashboardMemberAlarmResources::collection($members)));
|
||||
default:
|
||||
$members = $this->corporateMemberService->getAllMemberDashboards($corporate_id, $request);
|
||||
return response()->json(Helper::paginateResources(DashboardMemberResources::collection($members)));
|
||||
|
||||
0
Modules/Client/Http/Controllers/Api/CorporatePolicyController.php
Normal file → Executable file
0
Modules/Client/Http/Controllers/Api/CorporatePolicyController.php
Normal file → Executable file
32
Modules/Client/Http/Controllers/Api/DataController.php
Normal file
32
Modules/Client/Http/Controllers/Api/DataController.php
Normal file
@@ -0,0 +1,32 @@
|
||||
<?php
|
||||
|
||||
namespace Modules\Client\Http\Controllers\Api;
|
||||
|
||||
use App\Models\Person;
|
||||
use Illuminate\Http\Request;
|
||||
use Illuminate\Routing\Controller;
|
||||
|
||||
class DataController extends Controller
|
||||
{
|
||||
public function show($id)
|
||||
{
|
||||
try {
|
||||
$data = Person::findOrFail($id);
|
||||
return response()->json($data);
|
||||
} catch (\Exception $e) {
|
||||
return response()->json(['error' => 'Member not found'], 404);
|
||||
}
|
||||
}
|
||||
|
||||
public function update(Request $request, $id)
|
||||
{
|
||||
try {
|
||||
$data = Person::findOrFail($id);
|
||||
$data->update($request->all());
|
||||
|
||||
return response()->json(['message' => 'Data updated successfully']);
|
||||
} catch (\Exception $e) {
|
||||
return response()->json(['error' => 'Failed to update data'], 500);
|
||||
}
|
||||
}
|
||||
}
|
||||
35
Modules/Client/Http/Controllers/Api/TopUpController.php
Normal file → Executable file
35
Modules/Client/Http/Controllers/Api/TopUpController.php
Normal file → Executable file
@@ -3,6 +3,7 @@
|
||||
namespace Modules\Client\Http\Controllers\Api;
|
||||
|
||||
use App\Helpers\Helper;
|
||||
use App\Models\CorporatePolicy;
|
||||
use Illuminate\Contracts\Support\Renderable;
|
||||
use Illuminate\Http\Request;
|
||||
use Illuminate\Routing\Controller;
|
||||
@@ -33,9 +34,22 @@ class TopUpController extends Controller
|
||||
* @param Request $request
|
||||
* @return Renderable
|
||||
*/
|
||||
public function store(Request $request)
|
||||
public function store(Request $request, $corporate_id)
|
||||
{
|
||||
//
|
||||
|
||||
$data = $request->validate([
|
||||
'topup' => 'required|numeric',
|
||||
]);
|
||||
|
||||
$corporatePolicy = CorporatePolicy::query()->where('corporate_id',$corporate_id)->firstOrFail();
|
||||
if (!$corporatePolicy) {
|
||||
return response() -> json (['message' => 'Corporate policy not found'],404);
|
||||
}
|
||||
|
||||
$corporatePolicy -> total_premi += $data ['topup'];
|
||||
$corporatePolicy -> save();
|
||||
|
||||
return response () -> json (['message' => 'Amount added to total_premi successfully'], 200);
|
||||
}
|
||||
|
||||
/**
|
||||
@@ -48,6 +62,23 @@ class TopUpController extends Controller
|
||||
return view('client::show');
|
||||
}
|
||||
|
||||
public function get($corporate_id)
|
||||
{
|
||||
$data = CorporatePolicy::query()
|
||||
->where('corporate_id', $corporate_id)
|
||||
->with(['currentPolicy', 'employees'])
|
||||
->withCount(['employees', 'claims' => function ($query) {
|
||||
$query->where('claims.status', 'paid');
|
||||
}])
|
||||
->first();
|
||||
|
||||
if (!$data) {
|
||||
return response()->json(['message' => 'Corporate policy not found'], 404);
|
||||
}
|
||||
|
||||
return Helper::responseJson(TopUpLimitResources::make($data));
|
||||
}
|
||||
|
||||
/**
|
||||
* Update the specified resource in storage.
|
||||
* @param Request $request
|
||||
|
||||
0
Modules/Client/Http/Controllers/Api/UserController.php
Normal file → Executable file
0
Modules/Client/Http/Controllers/Api/UserController.php
Normal file → Executable file
0
Modules/Client/Http/Controllers/ClientController.php
Normal file → Executable file
0
Modules/Client/Http/Controllers/ClientController.php
Normal file → Executable file
0
Modules/Client/Http/Middleware/.gitkeep
Normal file → Executable file
0
Modules/Client/Http/Middleware/.gitkeep
Normal file → Executable file
0
Modules/Client/Http/Requests/.gitkeep
Normal file → Executable file
0
Modules/Client/Http/Requests/.gitkeep
Normal file → Executable file
0
Modules/Client/Providers/.gitkeep
Normal file → Executable file
0
Modules/Client/Providers/.gitkeep
Normal file → Executable file
0
Modules/Client/Providers/ClientServiceProvider.php
Normal file → Executable file
0
Modules/Client/Providers/ClientServiceProvider.php
Normal file → Executable file
0
Modules/Client/Providers/RouteServiceProvider.php
Normal file → Executable file
0
Modules/Client/Providers/RouteServiceProvider.php
Normal file → Executable file
0
Modules/Client/Resources/assets/.gitkeep
Normal file → Executable file
0
Modules/Client/Resources/assets/.gitkeep
Normal file → Executable file
0
Modules/Client/Resources/assets/js/app.js
Normal file → Executable file
0
Modules/Client/Resources/assets/js/app.js
Normal file → Executable file
0
Modules/Client/Resources/assets/sass/app.scss
Normal file → Executable file
0
Modules/Client/Resources/assets/sass/app.scss
Normal file → Executable file
0
Modules/Client/Resources/lang/.gitkeep
Normal file → Executable file
0
Modules/Client/Resources/lang/.gitkeep
Normal file → Executable file
0
Modules/Client/Resources/views/.gitkeep
Normal file → Executable file
0
Modules/Client/Resources/views/.gitkeep
Normal file → Executable file
0
Modules/Client/Resources/views/index.blade.php
Normal file → Executable file
0
Modules/Client/Resources/views/index.blade.php
Normal file → Executable file
0
Modules/Client/Resources/views/layouts/master.blade.php
Normal file → Executable file
0
Modules/Client/Resources/views/layouts/master.blade.php
Normal file → Executable file
0
Modules/Client/Routes/.gitkeep
Normal file → Executable file
0
Modules/Client/Routes/.gitkeep
Normal file → Executable file
12
Modules/Client/Routes/api.php
Normal file → Executable file
12
Modules/Client/Routes/api.php
Normal file → Executable file
@@ -8,6 +8,9 @@ use Modules\Client\Http\Controllers\Api\CorporatePolicyController;
|
||||
use Modules\Client\Http\Controllers\Api\UserController;
|
||||
use Modules\Client\Http\Controllers\Api\ClaimController;
|
||||
use Modules\Client\Http\Controllers\Api\TopUpController;
|
||||
use Modules\Internal\Http\Controllers\ClaimEncounterController;
|
||||
use App\Models\Encounter;
|
||||
use Modules\Internal\Transformers\EncounterResource;
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
@@ -38,11 +41,16 @@ Route::prefix('client')->group(function () {
|
||||
Route::get('members', [CorporateMemberController::class, 'index']);
|
||||
Route::get('claims/status', [ClaimController::class, 'status']);
|
||||
Route::get('claims', [ClaimController::class, 'index']);
|
||||
|
||||
Route::get('claims/{claim_id}/encounters', [ClaimEncounterController::class, 'getEncounterData']);
|
||||
Route::get('topup', [TopUpController::class, 'index']);
|
||||
// Route::get('topup', [TopUpController::class, 'get']);
|
||||
Route::post('topup', [TopUpController::class, 'store']);
|
||||
});
|
||||
|
||||
Route::get('claims/{id}', [ClaimController::class, 'show']);
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
});
|
||||
});
|
||||
|
||||
0
Modules/Client/Routes/web.php
Normal file → Executable file
0
Modules/Client/Routes/web.php
Normal file → Executable file
0
Modules/Client/Tests/Feature/.gitkeep
Normal file → Executable file
0
Modules/Client/Tests/Feature/.gitkeep
Normal file → Executable file
0
Modules/Client/Tests/Unit/.gitkeep
Normal file → Executable file
0
Modules/Client/Tests/Unit/.gitkeep
Normal file → Executable file
0
Modules/Client/Transformers/ClaimReport/MemberResources.php
Normal file → Executable file
0
Modules/Client/Transformers/ClaimReport/MemberResources.php
Normal file → Executable file
0
Modules/Client/Transformers/ClaimShowResource.php
Normal file → Executable file
0
Modules/Client/Transformers/ClaimShowResource.php
Normal file → Executable file
0
Modules/Client/Transformers/Dashboard/LimitResources.php
Normal file → Executable file
0
Modules/Client/Transformers/Dashboard/LimitResources.php
Normal file → Executable file
1
Modules/Client/Transformers/Dashboard/MemberAlarmCenterResources.php
Normal file → Executable file
1
Modules/Client/Transformers/Dashboard/MemberAlarmCenterResources.php
Normal file → Executable file
@@ -15,6 +15,7 @@ class MemberAlarmCenterResources extends JsonResource
|
||||
{
|
||||
return [
|
||||
'id' => $this->id,
|
||||
'personId' => $this->person_id,
|
||||
'memberId' => $this->member_id,
|
||||
'fullName' => $this->full_name,
|
||||
'service' => $this->service_code,
|
||||
|
||||
0
Modules/Client/Transformers/Dashboard/MemberResources.php
Normal file → Executable file
0
Modules/Client/Transformers/Dashboard/MemberResources.php
Normal file → Executable file
0
Modules/Client/Transformers/Dashboard/TopUpLimitResources.php
Normal file → Executable file
0
Modules/Client/Transformers/Dashboard/TopUpLimitResources.php
Normal file → Executable file
0
Modules/Client/composer.json
Normal file → Executable file
0
Modules/Client/composer.json
Normal file → Executable file
0
Modules/Client/module.json
Normal file → Executable file
0
Modules/Client/module.json
Normal file → Executable file
0
Modules/Client/package.json
Normal file → Executable file
0
Modules/Client/package.json
Normal file → Executable file
0
Modules/Client/webpack.mix.js
Normal file → Executable file
0
Modules/Client/webpack.mix.js
Normal file → Executable file
0
Modules/HospitalPortal/Config/.gitkeep
Normal file → Executable file
0
Modules/HospitalPortal/Config/.gitkeep
Normal file → Executable file
0
Modules/HospitalPortal/Config/config.php
Normal file → Executable file
0
Modules/HospitalPortal/Config/config.php
Normal file → Executable file
0
Modules/HospitalPortal/Console/.gitkeep
Normal file → Executable file
0
Modules/HospitalPortal/Console/.gitkeep
Normal file → Executable file
0
Modules/HospitalPortal/Database/Migrations/.gitkeep
Normal file → Executable file
0
Modules/HospitalPortal/Database/Migrations/.gitkeep
Normal file → Executable file
0
Modules/HospitalPortal/Database/Seeders/.gitkeep
Normal file → Executable file
0
Modules/HospitalPortal/Database/Seeders/.gitkeep
Normal file → Executable file
0
Modules/HospitalPortal/Database/Seeders/HospitalPortalDatabaseSeeder.php
Normal file → Executable file
0
Modules/HospitalPortal/Database/Seeders/HospitalPortalDatabaseSeeder.php
Normal file → Executable file
0
Modules/HospitalPortal/Database/factories/.gitkeep
Normal file → Executable file
0
Modules/HospitalPortal/Database/factories/.gitkeep
Normal file → Executable file
0
Modules/HospitalPortal/Entities/.gitkeep
Normal file → Executable file
0
Modules/HospitalPortal/Entities/.gitkeep
Normal file → Executable file
0
Modules/HospitalPortal/Http/Controllers/.gitkeep
Normal file → Executable file
0
Modules/HospitalPortal/Http/Controllers/.gitkeep
Normal file → Executable file
0
Modules/HospitalPortal/Http/Controllers/Api/AuthController.php
Normal file → Executable file
0
Modules/HospitalPortal/Http/Controllers/Api/AuthController.php
Normal file → Executable file
0
Modules/HospitalPortal/Http/Controllers/Api/ClaimRequestController.php
Normal file → Executable file
0
Modules/HospitalPortal/Http/Controllers/Api/ClaimRequestController.php
Normal file → Executable file
0
Modules/HospitalPortal/Http/Controllers/Api/MemberController.php
Normal file → Executable file
0
Modules/HospitalPortal/Http/Controllers/Api/MemberController.php
Normal file → Executable file
0
Modules/HospitalPortal/Http/Controllers/ClaimController.php
Normal file → Executable file
0
Modules/HospitalPortal/Http/Controllers/ClaimController.php
Normal file → Executable file
0
Modules/HospitalPortal/Http/Controllers/HospitalPortalController.php
Normal file → Executable file
0
Modules/HospitalPortal/Http/Controllers/HospitalPortalController.php
Normal file → Executable file
0
Modules/HospitalPortal/Http/Middleware/.gitkeep
Normal file → Executable file
0
Modules/HospitalPortal/Http/Middleware/.gitkeep
Normal file → Executable file
0
Modules/HospitalPortal/Http/Requests/.gitkeep
Normal file → Executable file
0
Modules/HospitalPortal/Http/Requests/.gitkeep
Normal file → Executable file
0
Modules/HospitalPortal/Providers/.gitkeep
Normal file → Executable file
0
Modules/HospitalPortal/Providers/.gitkeep
Normal file → Executable file
0
Modules/HospitalPortal/Providers/HospitalPortalServiceProvider.php
Normal file → Executable file
0
Modules/HospitalPortal/Providers/HospitalPortalServiceProvider.php
Normal file → Executable file
0
Modules/HospitalPortal/Providers/RouteServiceProvider.php
Normal file → Executable file
0
Modules/HospitalPortal/Providers/RouteServiceProvider.php
Normal file → Executable file
0
Modules/HospitalPortal/Resources/assets/.gitkeep
Normal file → Executable file
0
Modules/HospitalPortal/Resources/assets/.gitkeep
Normal file → Executable file
0
Modules/HospitalPortal/Resources/assets/js/app.js
Normal file → Executable file
0
Modules/HospitalPortal/Resources/assets/js/app.js
Normal file → Executable file
0
Modules/HospitalPortal/Resources/assets/sass/app.scss
Normal file → Executable file
0
Modules/HospitalPortal/Resources/assets/sass/app.scss
Normal file → Executable file
0
Modules/HospitalPortal/Resources/lang/.gitkeep
Normal file → Executable file
0
Modules/HospitalPortal/Resources/lang/.gitkeep
Normal file → Executable file
0
Modules/HospitalPortal/Resources/views/.gitkeep
Normal file → Executable file
0
Modules/HospitalPortal/Resources/views/.gitkeep
Normal file → Executable file
0
Modules/HospitalPortal/Resources/views/index.blade.php
Normal file → Executable file
0
Modules/HospitalPortal/Resources/views/index.blade.php
Normal file → Executable file
0
Modules/HospitalPortal/Resources/views/layouts/master.blade.php
Normal file → Executable file
0
Modules/HospitalPortal/Resources/views/layouts/master.blade.php
Normal file → Executable file
0
Modules/HospitalPortal/Routes/.gitkeep
Normal file → Executable file
0
Modules/HospitalPortal/Routes/.gitkeep
Normal file → Executable file
0
Modules/HospitalPortal/Routes/api.php
Normal file → Executable file
0
Modules/HospitalPortal/Routes/api.php
Normal file → Executable file
0
Modules/HospitalPortal/Routes/web.php
Normal file → Executable file
0
Modules/HospitalPortal/Routes/web.php
Normal file → Executable file
0
Modules/HospitalPortal/Tests/Feature/.gitkeep
Normal file → Executable file
0
Modules/HospitalPortal/Tests/Feature/.gitkeep
Normal file → Executable file
0
Modules/HospitalPortal/Tests/Unit/.gitkeep
Normal file → Executable file
0
Modules/HospitalPortal/Tests/Unit/.gitkeep
Normal file → Executable file
0
Modules/HospitalPortal/Transformers/ClaimRequestResource.php
Normal file → Executable file
0
Modules/HospitalPortal/Transformers/ClaimRequestResource.php
Normal file → Executable file
0
Modules/HospitalPortal/Transformers/ClaimRequestShowResource.php
Normal file → Executable file
0
Modules/HospitalPortal/Transformers/ClaimRequestShowResource.php
Normal file → Executable file
0
Modules/HospitalPortal/composer.json
Normal file → Executable file
0
Modules/HospitalPortal/composer.json
Normal file → Executable file
0
Modules/HospitalPortal/module.json
Normal file → Executable file
0
Modules/HospitalPortal/module.json
Normal file → Executable file
0
Modules/HospitalPortal/package.json
Normal file → Executable file
0
Modules/HospitalPortal/package.json
Normal file → Executable file
0
Modules/HospitalPortal/webpack.mix.js
Normal file → Executable file
0
Modules/HospitalPortal/webpack.mix.js
Normal file → Executable file
0
Modules/Internal/Config/.gitkeep
Normal file → Executable file
0
Modules/Internal/Config/.gitkeep
Normal file → Executable file
0
Modules/Internal/Config/config.php
Normal file → Executable file
0
Modules/Internal/Config/config.php
Normal file → Executable file
0
Modules/Internal/Console/.gitkeep
Normal file → Executable file
0
Modules/Internal/Console/.gitkeep
Normal file → Executable file
0
Modules/Internal/Database/Migrations/.gitkeep
Normal file → Executable file
0
Modules/Internal/Database/Migrations/.gitkeep
Normal file → Executable file
0
Modules/Internal/Database/Seeders/.gitkeep
Normal file → Executable file
0
Modules/Internal/Database/Seeders/.gitkeep
Normal file → Executable file
0
Modules/Internal/Database/Seeders/InternalDatabaseSeeder.php
Normal file → Executable file
0
Modules/Internal/Database/Seeders/InternalDatabaseSeeder.php
Normal file → Executable file
0
Modules/Internal/Database/factories/.gitkeep
Normal file → Executable file
0
Modules/Internal/Database/factories/.gitkeep
Normal file → Executable file
0
Modules/Internal/Emails/SendVerifyEmail.php
Normal file → Executable file
0
Modules/Internal/Emails/SendVerifyEmail.php
Normal file → Executable file
0
Modules/Internal/Entities/.gitkeep
Normal file → Executable file
0
Modules/Internal/Entities/.gitkeep
Normal file → Executable file
0
Modules/Internal/Events/ForgetPassword.php
Normal file → Executable file
0
Modules/Internal/Events/ForgetPassword.php
Normal file → Executable file
0
Modules/Internal/Http/Controllers/.gitkeep
Normal file → Executable file
0
Modules/Internal/Http/Controllers/.gitkeep
Normal file → Executable file
0
Modules/Internal/Http/Controllers/Api/AppointmentController.php
Normal file → Executable file
0
Modules/Internal/Http/Controllers/Api/AppointmentController.php
Normal file → Executable file
@@ -0,0 +1,90 @@
|
||||
<?php
|
||||
|
||||
namespace Modules\Internal\Http\Controllers\Api;
|
||||
|
||||
use App\Helpers\Helper;
|
||||
use App\Models\AuditTrail;
|
||||
use Illuminate\Contracts\Support\Renderable;
|
||||
use Illuminate\Http\Request;
|
||||
use Illuminate\Routing\Controller;
|
||||
use Modules\Internal\Transformers\AuditTrailResource;
|
||||
|
||||
class AuditTrailController extends Controller {
|
||||
/**
|
||||
* Display a listing of the resource.
|
||||
* @return Renderable
|
||||
*/
|
||||
public function index(Request $request, $id)
|
||||
{
|
||||
$audittrails = AuditTrail::query()
|
||||
->where('model', '=', $request->model)
|
||||
->where('model_id', '=', $id)
|
||||
// ->latest()
|
||||
->paginate(1000);
|
||||
return response()->json(Helper::paginateResources(AuditTrailResource::collection($audittrails)));
|
||||
}
|
||||
/**
|
||||
* Show the form for creating a new resource.
|
||||
* @return Renderable
|
||||
*/
|
||||
public function create()
|
||||
{
|
||||
return view('internal::create');
|
||||
}
|
||||
|
||||
/**
|
||||
* Store a newly created resource in storage.
|
||||
* @param Request $request
|
||||
* @return Renderable
|
||||
*/
|
||||
public function store(Request $request)
|
||||
{
|
||||
//
|
||||
}
|
||||
|
||||
/**
|
||||
* Show the specified resource.
|
||||
* @param int $id
|
||||
* @return Renderable
|
||||
*/
|
||||
public function show($id)
|
||||
{
|
||||
$appointments = Appointment::query()
|
||||
->with('doctor.user', 'doctor.speciality', 'appointmentDetail', 'healthCare')
|
||||
->where('nID', $id)
|
||||
->first();
|
||||
return response()->json(new AppointmentResource($appointments));
|
||||
}
|
||||
|
||||
/**
|
||||
* Show the form for editing the specified resource.
|
||||
* @param int $id
|
||||
* @return Renderable
|
||||
*/
|
||||
public function edit($id)
|
||||
{
|
||||
return view('internal::edit');
|
||||
}
|
||||
|
||||
/**
|
||||
* Update the specified resource in storage.
|
||||
* @param Request $request
|
||||
* @param int $id
|
||||
* @return Renderable
|
||||
*/
|
||||
public function update(Request $request, $id)
|
||||
{
|
||||
//
|
||||
}
|
||||
|
||||
/**
|
||||
* Remove the specified resource from storage.
|
||||
* @param int $id
|
||||
* @return Renderable
|
||||
*/
|
||||
public function destroy($id)
|
||||
{
|
||||
//
|
||||
}
|
||||
}
|
||||
?>
|
||||
0
Modules/Internal/Http/Controllers/Api/AuthController.php
Normal file → Executable file
0
Modules/Internal/Http/Controllers/Api/AuthController.php
Normal file → Executable file
0
Modules/Internal/Http/Controllers/Api/BenefitController.php
Normal file → Executable file
0
Modules/Internal/Http/Controllers/Api/BenefitController.php
Normal file → Executable file
0
Modules/Internal/Http/Controllers/Api/CityController.php
Normal file → Executable file
0
Modules/Internal/Http/Controllers/Api/CityController.php
Normal file → Executable file
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user