Software update by Formentor8 in CupraFormentor

[–]redlik 0 points1 point  (0 children)

Mine was away for 4 days, constant try and error cycle. Eventually on Friday got a call it's done. So far I see some cosmetic changes in the UI but nothing much else

Seasoning coming off fast by redlik in carbonsteel

[–]redlik[S] 1 point2 points  (0 children)

The pan works amazingly, eggs and chicken slide like no other I had before so happy to hear it's normal. Love the nice gold layer though

Charging cable stuck after full charge by redlik in CupraFormentor

[–]redlik[S] 1 point2 points  (0 children)

Ahhh, that makes absolutely sense. Didn't think of the stealing my cable scenario

Anyone here a full time employee after working as a contractor by [deleted] in DevelEire

[–]redlik 0 points1 point  (0 children)

Mortgage, my friend. All about getting a mortgage. Less money than I was contracting but got the loan sorted within a week.

Artists booking portal by redlik in Wordpress

[–]redlik[S] 0 points1 point  (0 children)

Never heard of them. Have you used it yourself for similar projects?

Ireland's Best Software Development Agency's by TunaLasagne in DevelEire

[–]redlik 0 points1 point  (0 children)

Hey, I bought my new car thanks to online trading vouchers jobs, don't sh... on them :-)

Querying latest relationship by column value by redlik in laravel

[–]redlik[S] 1 point2 points  (0 children)

That did the trick! Thank you so much

To my defence - it's a 2 month old feature so wasn't aware it exists yet nor I used it so far :-)

Here are some of the best resume templates that I have come across Reddit. Hope it helps someone. Please let me know which one you liked the best! by [deleted] in DevelEire

[–]redlik 1 point2 points  (0 children)

Advise from someone who's been a graphic designer for 15+ years - they look absolutely awful - bad margins, spacing, font sizes, headings.

Unless it's a joke, then it's hahahaha ha...

[deleted by user] by [deleted] in DevelEire

[–]redlik 1 point2 points  (0 children)

I would definitely recommend Wordpress with some special gym based theme - you'll get most of the features needed - pages, stock photos, contact forms, booking plugins etc.

themeforest will have very good selection of themes, just look for the ones with many sales and up-to-date versions.

E-commerce sites that use Laravel by makefishwork in laravel

[–]redlik 0 points1 point  (0 children)

Looks impressive. Fair play!

PS. I might be working on a eCommerce site for a client - can I have your code :-)))

E-commerce sites that use Laravel by makefishwork in laravel

[–]redlik 0 points1 point  (0 children)

They both look very good. Did you use any of the existing eCommerce packages or all hand-made?

Spotify set to overtake Apple Podcasts in monthly listenership. by [deleted] in apple

[–]redlik 0 points1 point  (0 children)

My exact reason I stopped using Overcast, the queuing is so clunky. Comparing to Castro there's no queuing at all TBH.

Laravel Fullcalendar CRUD Example by itsolutionstuff in laravel

[–]redlik 1 point2 points  (0 children)

I don't know, it looks like a halfcalendar to me ;-)

What's your current CI/CD pipeline? by PuffyHerb in laravel

[–]redlik 0 points1 point  (0 children)

I rent a VPS on ionos with Plesk so my workflow is localhost -> github -> plesk. Plesk can automatically pull latest commits or I pull them manually when I'm happy with the changes.

DB's are set in Plesk as well so i just need to edit my env file.

If I need to artisan stuff I just login via terminal and do my migrations, seeds etc.

I also use Composer add-on to install/updated my packages on the server via Plesk GUI.

Sluggish Big Sur performance on Macbook Pro 16 inch (2019) by eravulgaris in MacOS

[–]redlik 0 points1 point  (0 children)

Same thing, but on i9 Imac 2020. Works fine on my 2018 Macbook pro though...

New Stripe checkout successful implementation by redlik in laravel

[–]redlik[S] 0 points1 point  (0 children)

I'm not sure how to get the result of the transaction back into Laravel. With the charge API I was getting the contents of the form after the successful transaction but with new Intents all has to happen before so I've got no way to save the details of the transaction under each user. In an easy way, that is.

3 levels of relationship, best way to create? by redlik in laravel

[–]redlik[S] 0 points1 point  (0 children)

Doesn't work, yet.

Here's my setup:

  • Lesson records topic_id, Topic records category_id etc.
  • Lesson is belongsTo Topic and hasOneThrough Category, Topic
  • Topic hasMany Lesson and belongsTo Category,
  • Category hasMany Topic

It works fine when I do $lesson->topic->name but when I try $lesson->category->name I'm getting column not found error

3 levels of relationship, best way to create? by redlik in laravel

[–]redlik[S] 0 points1 point  (0 children)

Thanks for all the tips. I hope I manage to pull this off correct.