mirror of
https://github.com/Einundzwanzig-Podcast/einundzwanzig-portal.git
synced 2025-12-11 06:46:47 +00:00
add tags
This commit is contained in:
15
config/tags.php
Normal file
15
config/tags.php
Normal 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
44
config/tags/tags.php
Normal 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',
|
||||
],
|
||||
];
|
||||
Reference in New Issue
Block a user