feat&fix(Wip home page, services and illustrations & add static pages)
This commit is contained in:
@@ -1,4 +1,4 @@
|
||||
import { queryParams, type RouteQueryOptions, type RouteDefinition, type RouteFormDefinition } from './../../../../../../wayfinder'
|
||||
import { queryParams, type RouteQueryOptions, type RouteDefinition } from './../../../../../../wayfinder'
|
||||
/**
|
||||
* @see \App\Filament\Resources\NotificationTemplates\Pages\CreateNotificationTemplate::__invoke
|
||||
* @see app/Filament/Resources/NotificationTemplates/Pages/CreateNotificationTemplate.php:7
|
||||
@@ -43,41 +43,4 @@ CreateNotificationTemplate.head = (options?: RouteQueryOptions): RouteDefinition
|
||||
method: 'head',
|
||||
})
|
||||
|
||||
/**
|
||||
* @see \App\Filament\Resources\NotificationTemplates\Pages\CreateNotificationTemplate::__invoke
|
||||
* @see app/Filament/Resources/NotificationTemplates/Pages/CreateNotificationTemplate.php:7
|
||||
* @route '/admin/notification-templates/create'
|
||||
*/
|
||||
const CreateNotificationTemplateForm = (options?: RouteQueryOptions): RouteFormDefinition<'get'> => ({
|
||||
action: CreateNotificationTemplate.url(options),
|
||||
method: 'get',
|
||||
})
|
||||
|
||||
/**
|
||||
* @see \App\Filament\Resources\NotificationTemplates\Pages\CreateNotificationTemplate::__invoke
|
||||
* @see app/Filament/Resources/NotificationTemplates/Pages/CreateNotificationTemplate.php:7
|
||||
* @route '/admin/notification-templates/create'
|
||||
*/
|
||||
CreateNotificationTemplateForm.get = (options?: RouteQueryOptions): RouteFormDefinition<'get'> => ({
|
||||
action: CreateNotificationTemplate.url(options),
|
||||
method: 'get',
|
||||
})
|
||||
|
||||
/**
|
||||
* @see \App\Filament\Resources\NotificationTemplates\Pages\CreateNotificationTemplate::__invoke
|
||||
* @see app/Filament/Resources/NotificationTemplates/Pages/CreateNotificationTemplate.php:7
|
||||
* @route '/admin/notification-templates/create'
|
||||
*/
|
||||
CreateNotificationTemplateForm.head = (options?: RouteQueryOptions): RouteFormDefinition<'get'> => ({
|
||||
action: CreateNotificationTemplate.url({
|
||||
[options?.mergeQuery ? 'mergeQuery' : 'query']: {
|
||||
_method: 'HEAD',
|
||||
...(options?.query ?? options?.mergeQuery ?? {}),
|
||||
}
|
||||
}),
|
||||
method: 'get',
|
||||
})
|
||||
|
||||
CreateNotificationTemplate.form = CreateNotificationTemplateForm
|
||||
|
||||
export default CreateNotificationTemplate
|
||||
@@ -1,4 +1,4 @@
|
||||
import { queryParams, type RouteQueryOptions, type RouteDefinition, type RouteFormDefinition, applyUrlDefaults } from './../../../../../../wayfinder'
|
||||
import { queryParams, type RouteQueryOptions, type RouteDefinition, applyUrlDefaults } from './../../../../../../wayfinder'
|
||||
/**
|
||||
* @see \App\Filament\Resources\NotificationTemplates\Pages\EditNotificationTemplate::__invoke
|
||||
* @see app/Filament/Resources/NotificationTemplates/Pages/EditNotificationTemplate.php:7
|
||||
@@ -61,41 +61,4 @@ EditNotificationTemplate.head = (args: { record: string | number } | [record: st
|
||||
method: 'head',
|
||||
})
|
||||
|
||||
/**
|
||||
* @see \App\Filament\Resources\NotificationTemplates\Pages\EditNotificationTemplate::__invoke
|
||||
* @see app/Filament/Resources/NotificationTemplates/Pages/EditNotificationTemplate.php:7
|
||||
* @route '/admin/notification-templates/{record}/edit'
|
||||
*/
|
||||
const EditNotificationTemplateForm = (args: { record: string | number } | [record: string | number ] | string | number, options?: RouteQueryOptions): RouteFormDefinition<'get'> => ({
|
||||
action: EditNotificationTemplate.url(args, options),
|
||||
method: 'get',
|
||||
})
|
||||
|
||||
/**
|
||||
* @see \App\Filament\Resources\NotificationTemplates\Pages\EditNotificationTemplate::__invoke
|
||||
* @see app/Filament/Resources/NotificationTemplates/Pages/EditNotificationTemplate.php:7
|
||||
* @route '/admin/notification-templates/{record}/edit'
|
||||
*/
|
||||
EditNotificationTemplateForm.get = (args: { record: string | number } | [record: string | number ] | string | number, options?: RouteQueryOptions): RouteFormDefinition<'get'> => ({
|
||||
action: EditNotificationTemplate.url(args, options),
|
||||
method: 'get',
|
||||
})
|
||||
|
||||
/**
|
||||
* @see \App\Filament\Resources\NotificationTemplates\Pages\EditNotificationTemplate::__invoke
|
||||
* @see app/Filament/Resources/NotificationTemplates/Pages/EditNotificationTemplate.php:7
|
||||
* @route '/admin/notification-templates/{record}/edit'
|
||||
*/
|
||||
EditNotificationTemplateForm.head = (args: { record: string | number } | [record: string | number ] | string | number, options?: RouteQueryOptions): RouteFormDefinition<'get'> => ({
|
||||
action: EditNotificationTemplate.url(args, {
|
||||
[options?.mergeQuery ? 'mergeQuery' : 'query']: {
|
||||
_method: 'HEAD',
|
||||
...(options?.query ?? options?.mergeQuery ?? {}),
|
||||
}
|
||||
}),
|
||||
method: 'get',
|
||||
})
|
||||
|
||||
EditNotificationTemplate.form = EditNotificationTemplateForm
|
||||
|
||||
export default EditNotificationTemplate
|
||||
@@ -1,4 +1,4 @@
|
||||
import { queryParams, type RouteQueryOptions, type RouteDefinition, type RouteFormDefinition } from './../../../../../../wayfinder'
|
||||
import { queryParams, type RouteQueryOptions, type RouteDefinition } from './../../../../../../wayfinder'
|
||||
/**
|
||||
* @see \App\Filament\Resources\NotificationTemplates\Pages\ListNotificationTemplates::__invoke
|
||||
* @see app/Filament/Resources/NotificationTemplates/Pages/ListNotificationTemplates.php:7
|
||||
@@ -43,41 +43,4 @@ ListNotificationTemplates.head = (options?: RouteQueryOptions): RouteDefinition<
|
||||
method: 'head',
|
||||
})
|
||||
|
||||
/**
|
||||
* @see \App\Filament\Resources\NotificationTemplates\Pages\ListNotificationTemplates::__invoke
|
||||
* @see app/Filament/Resources/NotificationTemplates/Pages/ListNotificationTemplates.php:7
|
||||
* @route '/admin/notification-templates'
|
||||
*/
|
||||
const ListNotificationTemplatesForm = (options?: RouteQueryOptions): RouteFormDefinition<'get'> => ({
|
||||
action: ListNotificationTemplates.url(options),
|
||||
method: 'get',
|
||||
})
|
||||
|
||||
/**
|
||||
* @see \App\Filament\Resources\NotificationTemplates\Pages\ListNotificationTemplates::__invoke
|
||||
* @see app/Filament/Resources/NotificationTemplates/Pages/ListNotificationTemplates.php:7
|
||||
* @route '/admin/notification-templates'
|
||||
*/
|
||||
ListNotificationTemplatesForm.get = (options?: RouteQueryOptions): RouteFormDefinition<'get'> => ({
|
||||
action: ListNotificationTemplates.url(options),
|
||||
method: 'get',
|
||||
})
|
||||
|
||||
/**
|
||||
* @see \App\Filament\Resources\NotificationTemplates\Pages\ListNotificationTemplates::__invoke
|
||||
* @see app/Filament/Resources/NotificationTemplates/Pages/ListNotificationTemplates.php:7
|
||||
* @route '/admin/notification-templates'
|
||||
*/
|
||||
ListNotificationTemplatesForm.head = (options?: RouteQueryOptions): RouteFormDefinition<'get'> => ({
|
||||
action: ListNotificationTemplates.url({
|
||||
[options?.mergeQuery ? 'mergeQuery' : 'query']: {
|
||||
_method: 'HEAD',
|
||||
...(options?.query ?? options?.mergeQuery ?? {}),
|
||||
}
|
||||
}),
|
||||
method: 'get',
|
||||
})
|
||||
|
||||
ListNotificationTemplates.form = ListNotificationTemplatesForm
|
||||
|
||||
export default ListNotificationTemplates
|
||||
Reference in New Issue
Block a user