File tree Expand file tree Collapse file tree
resources/views/filament/resources/tickets Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -73,9 +73,9 @@ public function search(): void
7373 $ data = $ this ->form ->getState ();
7474 $ project = Project::find ($ data ['project ' ]);
7575 if ($ project ->type === "scrum " ) {
76- $ this ->redirect (route ('filament.admin.pages.scrum/ {project} ' , ['project ' => $ project ]));
76+ $ this ->redirect (route ('filament.admin.pages.scrum. {project} ' , ['project ' => $ project ]));
7777 } else {
78- $ this ->redirect (route ('filament.admin.pages.kanban/ {project} ' , ['project ' => $ project ]));
78+ $ this ->redirect (route ('filament.admin.pages.kanban. {project} ' , ['project ' => $ project ]));
7979 }
8080 }
8181}
Original file line number Diff line number Diff line change @@ -33,7 +33,7 @@ public function mount(Project $project)
3333 {
3434 $ this ->project = $ project ;
3535 if ($ this ->project ->type === 'scrum ' ) {
36- $ this ->redirect (route ('filament.admin.pages.scrum/ {project} ' , ['project ' => $ project ]));
36+ $ this ->redirect (route ('filament.admin.pages.scrum. {project} ' , ['project ' => $ project ]));
3737 } elseif (
3838 $ this ->project ->owner_id != auth ()->user ()->id
3939 &&
Original file line number Diff line number Diff line change @@ -33,7 +33,7 @@ public function mount(Project $project)
3333 {
3434 $ this ->project = $ project ;
3535 if ($ this ->project ->type !== 'scrum ' ) {
36- $ this ->redirect (route ('filament.admin.pages.kanban/ {project} ' , ['project ' => $ project ]));
36+ $ this ->redirect (route ('filament.admin.pages.kanban. {project} ' , ['project ' => $ project ]));
3737 } elseif (
3838 $ this ->project ->owner_id != auth ()->user ()->id
3939 &&
Original file line number Diff line number Diff line change @@ -260,9 +260,9 @@ class="w-8 h-8 bg-cover bg-center bg-no-repeat"></div>
260260 ->color ('gray ' )
261261 ->url (function ($ record ) {
262262 if ($ record ->type === 'scrum ' ) {
263- return route ('filament.admin.pages.scrum/ {project} ' , ['project ' => $ record ->id ]);
263+ return route ('filament.admin.pages.scrum. {project} ' , ['project ' => $ record ->id ]);
264264 } else {
265- return route ('filament.admin.pages.kanban/ {project} ' , ['project ' => $ record ->id ]);
265+ return route ('filament.admin.pages.kanban. {project} ' , ['project ' => $ record ->id ]);
266266 }
267267 }),
268268 ])->color ('gray ' ),
Original file line number Diff line number Diff line change @@ -22,9 +22,9 @@ public function getHeaderActions(): array
2222 ->color ('gray ' )
2323 ->url (function () {
2424 if ($ this ->record ->type === 'scrum ' ) {
25- return route ('filament.admin.pages.scrum/ {project} ' , ['project ' => $ this ->record ->id ]);
25+ return route ('filament.admin.pages.scrum. {project} ' , ['project ' => $ this ->record ->id ]);
2626 } else {
27- return route ('filament.admin.pages.kanban/ {project} ' , ['project ' => $ this ->record ->id ]);
27+ return route ('filament.admin.pages.kanban. {project} ' , ['project ' => $ this ->record ->id ]);
2828 }
2929 }),
3030
Original file line number Diff line number Diff line change @@ -22,9 +22,9 @@ public function getHeaderActions(): array
2222 ->color ('gray ' )
2323 ->url (function () {
2424 if ($ this ->record ->type === 'scrum ' ) {
25- return route ('filament.admin.pages.scrum/ {project} ' , ['project ' => $ this ->record ->id ]);
25+ return route ('filament.admin.pages.scrum. {project} ' , ['project ' => $ this ->record ->id ]);
2626 } else {
27- return route ('filament.admin.pages.kanban/ {project} ' , ['project ' => $ this ->record ->id ]);
27+ return route ('filament.admin.pages.kanban. {project} ' , ['project ' => $ this ->record ->id ]);
2828 }
2929 }),
3030
Original file line number Diff line number Diff line change @@ -159,9 +159,9 @@ public function table(Table $table): Table
159159 )
160160 ->url (function () use ($ record ) {
161161 if ($ record ->project ->type === 'scrum ' ) {
162- return route ('filament.admin.pages.scrum/ {project} ' , ['project ' => $ record ->project ->id ]);
162+ return route ('filament.admin.pages.scrum. {project} ' , ['project ' => $ record ->project ->id ]);
163163 } else {
164- return route ('filament.admin.pages.kanban/ {project} ' , ['project ' => $ record ->project ->id ]);
164+ return route ('filament.admin.pages.kanban. {project} ' , ['project ' => $ record ->project ->id ]);
165165 }
166166 }),
167167 ])
Original file line number Diff line number Diff line change @@ -62,7 +62,7 @@ class="w-8 h-8 bg-cover bg-center bg-no-repeat"></div>
6262 </a>
6363 <span class="text-gray-300">|</span>
6464 <a class="text-primary-400 hover:text-primary-500 hover:cursor-pointer"
65- href=" ' . route ('filament.admin.pages.kanban/ {project} ' , ['project ' => $ project ->id ]) . '">
65+ href=" ' . route ('filament.admin.pages.kanban. {project} ' , ['project ' => $ project ->id ]) . '">
6666 ' . __ ('Tickets ' ) . '
6767 </a>
6868 </div>
Original file line number Diff line number Diff line change 11@php ($record = $this -> record )
22<x-filament::page >
33
4- <a href =" {{ route (' filament.admin.pages.kanban/ {project}' , [' project' => $record -> project -> id ]) } }"
4+ <a href =" {{ route (' filament.admin.pages.kanban. {project}' , [' project' => $record -> project -> id ]) } }"
55 class =" flex items-center gap-1 text-gray-500 hover:text-gray-700 font-medium text-xs" >
66 <x-heroicon-o-arrow-left class =" w-4 h-4" /> {{ __ (' Back to kanban board' ) } }
77 </a >
You can’t perform that action at this time.
0 commit comments