This commit is contained in:
f4ilji
2024-10-14 14:56:10 +05:00
parent 77b3e3b4b1
commit dd3a0c6ecd
258 changed files with 6548 additions and 1777 deletions
+1 -1
View File
@@ -136,7 +136,7 @@ export default {
{{ napr.name }}
</h1>
<template v-for="program in napr.programs" :key="program.id">
<Link class="block text-[#1E57A3] hover:text-blue-600 duration-200 text-sm underline underline-offset-2 py-1" :href="route('client.program.show', program)">{{ program.name }}</Link>
<Link class="block text-[#1E57A3] hover:text-blue-600 duration-200 text-sm underline underline-offset-2 py-1" :href="route('client.program.show', program.slug)">{{ program.name }}</Link>
</template>
</div>
</template>
@@ -11,11 +11,13 @@ import ClientPostSearch from "@/Components/ClientPostSearch.vue";
import ClientProgramFilter from "@/Components/ClientProgramFilter.vue";
import LevelEduFilter from "@/Components/BuilderUi/Programs/Filters/LevelEduFilter.vue";
import MainPageNavBar from "@/Navbars/MainPageNavbar.vue";
import FormBlock from "@/Components/BuilderUi/Pages/Blocks/FormBlock.vue";
export default {
name: "Show",
components: {
FormBlock,
MainPageNavBar,
LevelEduFilter, ClientProgramFilter,
ClientPostSearch,