initial commit

This commit is contained in:
2026-06-29 13:00:18 +06:00
commit f2aea74471
3931 changed files with 562423 additions and 0 deletions

63
resources/js/router/routes.js vendored Normal file
View File

@@ -0,0 +1,63 @@
import CreateAccount from "../components/partials/CreateAccount";
import AddProfile from "../components/partials/AddProfile";
import ChoosePackage from "../components/partials/ChoosePackage";
import CreateCreditReportAccount from "../components/partials/CreateCreditReportAccount";
import Success from "../components/partials/Success";
import MakePayment from "../components/partials/MakePayment";
const routes = [
{
path: '/',
redirect: { name: 'create-account' }
},
{
path: '/create/account',
name: 'create-account',
component: CreateAccount,
meta: {
is_step: false
},
},
{
path: '/add/profile',
name: 'add-profile',
component: AddProfile,
meta: {
is_step: true
},
},
{
path: '/choose/package',
name: 'choose-package',
component: ChoosePackage,
meta: {
is_step: true
},
},
{
path: '/create/cr-account',
name: 'create-cr-account',
component: CreateCreditReportAccount,
meta: {
is_step: true
},
},
{
path: '/success',
name: 'success',
component: Success,
meta: {
is_step: true
},
},
{
path: '/make/payment',
name: 'make-payment',
component: MakePayment,
meta: {
is_step: true
},
},
]
export default routes;