Search found 32 matches

by jafo66
28 Mar 2024, 14:38
Forum: Laravel package
Topic: Implementing an admin panel
Replies: 2
Views: 22495

Re: Implementing an admin panel

You are correct, I had not configured my extension properly. Once that was resolved, it is working properly now. (Thanks to Norbert at Aimeos)
by jafo66
25 Mar 2024, 03:43
Forum: Laravel package
Topic: Implementing an admin panel
Replies: 2
Views: 22495

Implementing an admin panel

With the context of my other posts, I've been following the docs to the best of my ability. I was able to successfully implement a menu item. When I click on the menu item it went to: [url]http://localhost:8000/admin/default/jqadm/search/season?locale=en[/url] and then I got an error that ./src/Seas...
by jafo66
25 Mar 2024, 01:54
Forum: Laravel package
Topic: New model in new context not saving
Replies: 1
Views: 17155

New model in new context not saving

I have been able to create a model in my extension. In my project which references my extension, I'm able to get model and query the database successfully. What I'm not understanding is why I'm not able to save a record. There is no exception (it is in a try/catch just to be sure) try { // see if se...
by jafo66
25 Mar 2024, 00:14
Forum: Laravel package
Topic: Adding Menu Items to Admin Panel
Replies: 4
Views: 32994

Re: Adding Menu Items to Admin Panel

You can ignore the shop.php question... I have it working in the project which is good for our solution.
by jafo66
24 Mar 2024, 19:07
Forum: Laravel package
Topic: Adding Menu Items to Admin Panel
Replies: 4
Views: 32994

Re: Adding Menu Items to Admin Panel

1a) How do I add one off translations to proper capitalize the menu items? I did try to create a en.php in the i18n directory but I don't think that works or I didn't configure it properly. If you want to add translation to PO files instead of the ./config/shop.php, you have to compile the .po file...
by jafo66
22 Mar 2024, 19:53
Forum: Laravel package
Topic: Jetstream Teams within Aimeos
Replies: 2
Views: 22037

Re: Jetstream Teams within Aimeos

Maybe a better question is within the admin.php, when I define the menu item, how do I provide an alternate URL for the menu item so that I could embed the Teams admin vue pages in the admin panel? I'm thinking it would point the Jetstream Team's controller.
by jafo66
22 Mar 2024, 19:50
Forum: Laravel package
Topic: Access CMS Content from JSON
Replies: 6
Views: 44540

Re: Access CMS Content from JSON

Got it, that makes sense.
by jafo66
22 Mar 2024, 02:06
Forum: Laravel package
Topic: Jetstream Teams within Aimeos
Replies: 2
Views: 22037

Jetstream Teams within Aimeos

Php version: 8.2.15 Versions: aimeos/ai-laravel 2023.10.5 aimeos/aimeos-laravel 2023.10.8 inertiajs/inertia-laravel v0.6.11 laravel/framework v10.48.3 laravel/jetstream v4.3.1 laravel/serializable-closure v1.3.3 spatie/laravel-ignition 2.4.2 OS version: MacOs 14.4 We are considering using Jetstream...
by jafo66
22 Mar 2024, 02:04
Forum: Laravel package
Topic: Adding Menu Items to Admin Panel
Replies: 4
Views: 32994

Adding Menu Items to Admin Panel

Php version: 8.2.15 Versions: aimeos/ai-laravel 2023.10.5 aimeos/aimeos-laravel 2023.10.8 inertiajs/inertia-laravel v0.6.11 laravel/framework v10.48.3 laravel/jetstream v4.3.1 laravel/serializable-closure v1.3.3 spatie/laravel-ignition 2.4.2 OS version: MacOs 14.4 Overview: We are building a websit...
by jafo66
21 Mar 2024, 04:17
Forum: Laravel package
Topic: Access CMS Content from JSON
Replies: 6
Views: 44540

Re: Access CMS Content from JSON

Thanks for the information. The first URL works great, especially if I have an ID, I can get the specific content. The second URL: "http://localhost:8000/jsonapi/cms?include=cms.text" doesn't seem to return anything different. You had said "more specifc", but I'm not following wh...