foleystorm
TCTwill CMS
•Created by foleystorm on 10/6/2023 in #👊support
permalink
How can i implement it?
74 replies
TCTwill CMS
•Created by foleystorm on 10/6/2023 in #👊support
permalink
Thank you, Ifox. Do you know how to get full permalink value with slug?
74 replies
TCTwill CMS
•Created by foleystorm on 10/6/2023 in #👊support
permalink
How can I get the full value from permalink?
74 replies
TCTwill CMS
•Created by macoe on 9/27/2023 in #👊support
Permalink - Question
I do no how to do that
4 replies
TCTwill CMS
•Created by macoe on 9/27/2023 in #👊support
Permalink - Question
I have the same question
4 replies
TCTwill CMS
•Created by foleystorm on 5/30/2023 in #👊support
featured
It worked!!! Thank you so much, Ifox!!! I would like to congratulate you for always helping people.
14 replies
TCTwill CMS
•Created by foleystorm on 5/30/2023 in #👊support
featured
Twill.php: 'enabled' => [
'buckets' => true,
],
'buckets' => [
'videos' => [
'name' => 'Home',
'buckets' => [
'videos_feature' => [
'name' => 'Em destaque',
'bucketables' => [
[
'module' => 'videos',
'name' => 'videos',
'repository' => 'App\Repositories\VideoRepository',
'scopes' => ['published' => true],
],
],
'max_items' => 3,
],
],
],
'posts' => [
'name' => 'Home',
'buckets' => [
'posts_feature' => [
'name' => 'Em destaque',
'bucketables' => [
[
'module' => 'posts',
'name' => 'posts',
'repository' => 'App\Twill\Capsules\Posts\Repositories\PostRepository',
'scopes' => ['published' => true, 'orderByPublishedDate' => true],
],
],
'max_items' => 3,
],
],
],
],
14 replies
TCTwill CMS
•Created by foleystorm on 5/30/2023 in #👊support
featured
I tried that: TwillNavigation::addLink(
NavigationLink::make()
->forRoute('admin.featured.videos')
->setChildren([
NavigationLink::make()
->forRoute('admin.featured.videos')
->title('Vídeos'),
NavigationLink::make()
->forRoute('admin.featured.posts')
->title('Notícias'),
])
->doNotAddSelfAsFirstChild()
->title('Destaques')
); but it didn't work.
14 replies
TCTwill CMS
•Created by foleystorm on 5/30/2023 in #👊support
featured
I used to use twill-navigation, but now I'm using the appServiceProvider to declare the routes.
14 replies