Click on the channel settings icon and select integrations
.
LOG_DISCORD_WEBHOOK_URL=<insert-the-webhook-url-here>
bun install --frozen-lockfile && bun run build |
<template> | |
<svg> | |
<use :href="symbolId" /> | |
</svg> | |
</template> | |
<script> | |
export default { | |
props: ['icon'], |
<template> | |
<svg v-bind="svgAttributes" v-html="svgContent"></svg> | |
</template> | |
<script> | |
export default { | |
props: ['icon'], | |
data() { | |
return { |
<template> | |
<svg | |
v-bind="svgAttributes" | |
v-html="svgContent" | |
> | |
</svg> | |
</template> | |
<script> | |
export default { |
@layer utilities { | |
.pb-safe { | |
padding-bottom: env(safe-area-inset-bottom); | |
} | |
} |
namespace App\Providers; | |
use DB; | |
use Illuminate\Support\ServiceProvider; | |
class AppServiceProvider extends ServiceProvider | |
{ | |
/** | |
* Bootstrap any application services. | |
* |
{ | |
"rules": { | |
"@PSR2": true, | |
"ordered_imports": { | |
"sort_algorithm": "length" | |
}, | |
"array_syntax": { | |
"syntax": "short" | |
}, | |
"no_unused_imports": true, |