add reason in corporate, plan, service
This commit is contained in:
@@ -11,6 +11,7 @@ import Register from '../pages/auth/Register';
|
||||
import VerifyCode from '../pages/auth/VerifyCode';
|
||||
import { AuthProvider } from '../contexts/LaravelAuthContext';
|
||||
import AuthGuard from '../guards/AuthGuard';
|
||||
import { Link, useParams, useSearchParams } from 'react-router-dom';
|
||||
|
||||
// ----------------------------------------------------------------------
|
||||
|
||||
@@ -104,10 +105,18 @@ export default function Router() {
|
||||
path: ':corporate_id/services/:service_code',
|
||||
element: <CorporateServicesCreate />,
|
||||
},
|
||||
{
|
||||
path: ':corporate_id/services/:service_code/history',
|
||||
element: <CorporateServicesHistory />,
|
||||
},
|
||||
{
|
||||
path: ':corporate_id/plans/create',
|
||||
element: <PlanCreate />,
|
||||
},
|
||||
{
|
||||
path: ':corporate_id/plans/:plan_id/history',
|
||||
element: <CorporatePlansHistory />,
|
||||
},
|
||||
{
|
||||
path: ':corporate_id/plans',
|
||||
element: <Plans />,
|
||||
@@ -157,6 +166,10 @@ export default function Router() {
|
||||
path: ':corporate_id/claim-history',
|
||||
element: <CorporateClaimHistories />,
|
||||
},
|
||||
{
|
||||
path: ':corporate_id/corporate-history',
|
||||
element: <CorporateHistories />,
|
||||
},
|
||||
],
|
||||
},
|
||||
{
|
||||
@@ -368,6 +381,7 @@ const CorporatePlans = Loadable(lazy(() => import('../pages/Corporates/Corporate
|
||||
|
||||
const PlanCreate = Loadable(lazy(() => import('../pages/Corporates/Plan/Create')));
|
||||
const Plans = Loadable(lazy(() => import('../pages/Corporates/Plan/Index')));
|
||||
const CorporatePlansHistory = Loadable(lazy(() => import('../pages/Corporates/Plan/sections/History')));
|
||||
|
||||
const DiagnosisExclusions = Loadable(
|
||||
lazy(() => import('../pages/Corporates/DiagnosisExclusion/Index'))
|
||||
@@ -398,12 +412,17 @@ const MasterFormulariumCreate = Loadable(lazy(() => import('../pages/Master/Form
|
||||
|
||||
const CorporateServices = Loadable(lazy(() => import('../pages/Corporates/Services/Index')));
|
||||
const CorporateServicesCreate = Loadable(lazy(() => import('../pages/Corporates/Services/Create')));
|
||||
const CorporateServicesHistory = Loadable(lazy(() => import('../pages/Corporates/Services/sections/History')));
|
||||
|
||||
const CorporateHospitals = Loadable(lazy(() => import('../pages/Corporates/Hospital/Index')));
|
||||
const CorporateClaimHistories = Loadable(
|
||||
lazy(() => import('../pages/Corporates/ClaimHistory/Index'))
|
||||
);
|
||||
|
||||
const CorporateHistories = Loadable(
|
||||
lazy(() => import('../pages/Corporates/History'))
|
||||
);
|
||||
|
||||
const Profile = Loadable(lazy(() => import('../pages/Profile/Index')));
|
||||
|
||||
const Claims = Loadable(lazy(() => import('../pages/Claims/Index')));
|
||||
|
||||
Reference in New Issue
Block a user