Edit File: preview.vue
<script type="text/ecmascript-6"> export default { data(){ return { entry: null, batch: [], }; }, } </script> <template> <preview-screen title="Notification Details" resource="notifications" :id="$route.params.id"> <template slot="table-parameters" slot-scope="slotProps"> <tr> <td class="table-fit text-muted">Channel</td> <td> {{slotProps.entry.content.channel}} </td> </tr> <tr> <td class="table-fit text-muted">Notification</td> <td> {{slotProps.entry.content.notification}} <span class="badge badge-secondary ml-2" v-if="slotProps.entry.content.queued"> Queued </span> </td> </tr> <tr> <td class="table-fit text-muted">Notifiable</td> <td> {{slotProps.entry.content.notifiable}} </td> </tr> </template> </preview-screen> </template>
Back to File Manager