cslant/laravel-telegram-git-notifier

View on GitHub
resources/views/tools/menu.blade.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php

use CSlant\LaravelTelegramGitNotifier\Services\CommandService;

$menuCommands = CommandService::menuCommands() ?? [];
?>

<b>{{ __('tg-notifier::tools/menu.title') }}</b> 🤖

<?php foreach ($menuCommands as $menuCommand) : ?>
<b><?= $menuCommand['command'] ?></b> - <?= $menuCommand['description'] ?>

<?php endforeach; ?>