PHP Classes

File: resources/js/components/Show/Log.vue

Recommend this page to a friend!
  Classes of Nyi Nyi Lwin   Laravel Nova Log Viewer   resources/js/components/Show/Log.vue   Download  
File: resources/js/components/Show/Log.vue
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: Laravel Nova Log Viewer
Display information about logs in Laravel Nova
Author: By
Last change:
Date: 5 years ago
Size: 1,110 bytes
 

Contents

Class file image Download
<template> <tr> <td class="p-2"> <p> <span :style="{'background-color' : getColor(entry.level) }" class="inline-block px-3 py-1 text-sm text-white font-semibold mr-3"> {{ entry.level.toUpperCase() }} </span> Time : {{ entry.datetime }} </p> <p class="mt-2"> {{ entry.header }} </p> </td> <td class="p-2"> <button v-if="entry.stack.length > 2" class="bg-transparent hover:bg-primary text-primary border-primary font-semibold hover:text-white py-2 px-4 border hover:border-transparent rounded" @click.prevent="$emit('stack')" > Stack </button> </td> </tr> </template> co <script> import color from '../../utils/color' export default { name: "Log", props: ['entry'], methods : { getColor (level) { return color(level) } } } </script> <style scoped> </style>