SMS service

This commit is contained in:
Simon Pocrnjič
2025-10-24 21:39:10 +02:00
parent 3a2eed7dda
commit 930ac83604
52 changed files with 3830 additions and 36 deletions
+30 -1
View File
@@ -2,7 +2,7 @@
import AdminLayout from '@/Layouts/AdminLayout.vue'
import { Link } from '@inertiajs/vue3'
import { FontAwesomeIcon } from '@fortawesome/vue-fontawesome'
import { faUserGroup, faKey, faGears, faFileWord, faEnvelopeOpenText, faInbox, faAt } from '@fortawesome/free-solid-svg-icons'
import { faUserGroup, faKey, faGears, faFileWord, faEnvelopeOpenText, faInbox, faAt, faAddressBook, faFileLines } from '@fortawesome/free-solid-svg-icons'
const cards = [
{
@@ -62,6 +62,35 @@ const cards = [
},
],
},
{
category: 'Komunikacije',
items: [
{
title: 'SMS profili',
description: 'Nastavitve SMS profilov, testno pošiljanje in stanje kreditov',
route: 'admin.sms-profiles.index',
icon: faGears,
},
{
title: 'SMS pošiljatelji',
description: 'Upravljanje nazivov pošiljateljev (Sender ID) za SMS profile',
route: 'admin.sms-senders.index',
icon: faAddressBook,
},
{
title: 'SMS predloge',
description: 'Tekstovne predloge za SMS obvestila in opomnike',
route: 'admin.sms-templates.index',
icon: faFileLines,
},
{
title: 'SMS dnevniki',
description: 'Pregled poslanih SMSov in statusov',
route: 'admin.sms-logs.index',
icon: faInbox,
},
],
},
]
</script>