This commit is contained in:
Benjamin Takats
2022-12-04 19:42:27 +01:00
parent ffd465076a
commit 3c28f79aa6
29 changed files with 664 additions and 6 deletions

15
config/tags.php Normal file
View File

@@ -0,0 +1,15 @@
<?php
return [
/*
* The given function generates a URL friendly "slug" from the tag name property before saving it.
* Defaults to Str::slug (https://laravel.com/docs/master/helpers#method-str-slug)
*/
'slugger' => null,
/*
* The fully qualified class name of the tag model.
*/
'tag_model' => \App\Models\Tag::class,
];

44
config/tags/tags.php Normal file
View File

@@ -0,0 +1,44 @@
<?php
return [
[
'de' => 'Hardware Wallet',
'en' => 'Hardware Wallet',
'icon' => 'wallet',
],
[
'de' => 'Software Wallet',
'en' => 'Software Wallet',
'icon' => 'message-code',
],
[
'de' => 'Lightning',
'en' => 'Lightning',
'icon' => 'bolt-lightning',
],
[
'de' => 'On-Chain',
'en' => 'On-Chain',
'icon' => 'link-horizontal',
],
[
'de' => 'Off-Chain',
'en' => 'Off-Chain',
'icon' => 'link-horizontal-slash',
],
[
'de' => 'Für Unternehmen',
'en' => 'For Businesses',
'icon' => 'buildings',
],
[
'de' => 'Mining',
'en' => 'Mining',
'icon' => 'pickaxe',
],
[
'de' => 'Datenschutz',
'en' => 'Privacy',
'icon' => 'shield-keyhole',
],
];