Search found 26 matches

by jafo66
29 Apr 2024, 17:58
Forum: Laravel package
Topic: airoute not producing https links
Replies: 1
Views: 1095

airoute not producing https links

In deploying my app into a docker container, I have it exposed on port 443 with a valid certificate. The site won't work because it seems to be responding with URLs as http://<server_name> instead of https://<server_name>. Meaning, I get HTML returned the browser is blocking the non-secured links wh...
by jafo66
25 Apr 2024, 04:57
Forum: Laravel package
Topic: Unable to query customers filtering for status
Replies: 2
Views: 5136

Re: Unable to query customers filtering for status

Please disregard... I forgot to make it 'customer.status' instead of 'status'. Its what I get for looking at the DB and not the MShop files.
by jafo66
24 Apr 2024, 18:32
Forum: Laravel package
Topic: Unable to query customers filtering for status
Replies: 2
Views: 5136

Unable to query customers filtering for status

When querying for "active" customers, I'm unable to use a filter for status. I'm able to filter in other ways without an issue. Thanks! $userManager = MShop::create( $this->context(), 'customer' ); $search = $userManager->filter(true); $search->slice(0, 10000); $search->add('status', '==',...
by jafo66
24 Apr 2024, 02:53
Forum: Laravel package
Topic: Admin Vue Components
Replies: 2
Views: 5828

Re: Admin Vue Components

Should I be using this: https://aimeos.org/docs/latest/admin/jqadm/customize/

If so, how do I include all .js files in a directory?
by jafo66
23 Apr 2024, 21:48
Forum: Laravel package
Topic: Admin Vue Components
Replies: 2
Views: 5828

Admin Vue Components

I'm looking to copy and implement a similar Vue component like the property-table.js component used in the Customer/property subpanel within the admin screens. I copied the .js file from within the admin/jqadm/js/components directory and placed it inside of the following trying to see what would wor...
by jafo66
18 Apr 2024, 14:35
Forum: Laravel package
Topic: Overriding Status Names
Replies: 2
Views: 10476

Re: Overriding Status Names

Thanks!
by jafo66
17 Apr 2024, 20:50
Forum: Laravel package
Topic: Custom Links in Subparts
Replies: 3
Views: 13013

Re: Custom Links in Subparts

That worked for what I needed, but how would you link to a subpart using that method? The link that got generated had the subpart ID at the end which didn't seem to work, but I might have missed something in the routing. Example link created: http://localhost:8000/admin/jqadm/<panel name>/get/<id> W...
by jafo66
17 Apr 2024, 12:40
Forum: Laravel package
Topic: Changing title in jqadm to be dynamic
Replies: 2
Views: 9459

Re: Changing title in jqadm to be dynamic

Yep, that worked great. I missed the get(false) when I was trying to do it myself.
by jafo66
16 Apr 2024, 19:00
Forum: Laravel package
Topic: Overriding Status Names
Replies: 2
Views: 10476

Overriding Status Names

I would like to change the name of the statuses used in the admin panels. This code seems pretty standard: 'status' => ['op' => '==', 'type' => 'select', 'val' => [ '1' => $this->translate( 'mshop/code', 'status:1' ), '0' => $this->translate( 'mshop/code', 'status:0' ), '-1' => $this->translate( 'ms...
by jafo66
16 Apr 2024, 17:11
Forum: Laravel package
Topic: Changing title in jqadm to be dynamic
Replies: 2
Views: 9459

Changing title in jqadm to be dynamic

I was able to get my own version of the index.blade.php for the admin screen working based on another post. I was hoping to have the title generated based on the site label. How would I get that in the index.blade.php? I tried using the app() and app('aimeos-context') but neither seemed to return th...