import { Head, Link } from '@inertiajs/react' import <%= inertia_component_name %> from './<%= inertia_component_name %>' export default function Show({ <%= singular_table_name %>, flash }) { return ( <> #${<%= singular_table_name %>.id}`} /> {flash.notice &&

{flash.notice}

}

<%= human_name %> #{<%= singular_table_name %>.id}

<<%= inertia_component_name %> <%= singular_table_name %>={<%= singular_table_name %>} />
`}>Edit this <%= human_name.downcase %> {' | '} Back to <%= human_name.pluralize.downcase %>
`} as="button" method="delete" > Destroy this <%= human_name.downcase %>
) }