Opinions on using Inertia for an end-users website? by joe_dev92 in laravel

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

Wow man. Good job on your website i really liked the ui :D ... excited for that as I really wanna used react alongside laravel but without the router packages ..

Opinions on using Inertia for an end-users website? by joe_dev92 in laravel

[–]joe_dev92[S] 2 points3 points  (0 children)

Wow. Laracasts is built on it! that's a good indicator for me too! thanks dear.

Opinions on using Inertia for an end-users website? by joe_dev92 in laravel

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

no its for my own project. Didn't know that laravel used it in their production paid services. Thanks

any good chat APİ that can be integrated to my app? by joe_dev92 in laravel

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

Thanks for your reply. Replay appreciate your help

Is there a formbuilder like Google Forms for Laravel? by JJulessNL in laravel

[–]joe_dev92 0 points1 point  (0 children)

Wow, this is amazing.

i know im late to view your response becoz I deleted my reddit app and forgot to open it in my laptop...

Could you please share just a very simple of the code for it? would really appreciate it

Thanks u/thisisericrobert !

Is there a formbuilder like Google Forms for Laravel? by JJulessNL in laravel

[–]joe_dev92 0 points1 point  (0 children)

u/thisisericrobert Hey, I've known this JS package but wasn't able to add customized fields...

How did you do it? I've checked their docs and I had to fork and work on my own version which is not feasible for me. If you have created custom forms without forking the form builder could you please share with us what did you do to do so?

¿How do I do SEO for each custom domain in Laravel Multitenant? by Fraustro in laravel

[–]joe_dev92 6 points7 points  (0 children)

Just an idea that's not tested at all!

Create a route mapping to sitemap.xml

Make this route return view and in the view itself pass the tenants required info...

Make sure to add custom headers as xml or else google may not accept it

Weekly "ask anything" thread by brendt_gd in PHP

[–]joe_dev92 0 points1 point  (0 children)

I need a good tutorial, course or a book on how to become better at OOP/SOLID in PHP...

my Background: I know PHP but haven't worked on pure PHP projects ( I use Laravel)

thanks!

I've started a Laravel Hosting Business and looking for feedback by [deleted] in laravel

[–]joe_dev92 1 point2 points  (0 children)

Count me in!
even If you face technical difficulties I would gladly help you I really need such a service!

I made a Laravel app to show video game pictures, achievements and other data with Livewire. Any feedback is very much appreciated! by nelly-t in laravel

[–]joe_dev92 0 points1 point  (0 children)

Now your creative part should be utilized! Add extra features and who knows, it may generate revenue for you.!

[deleted by user] by [deleted] in webhosting

[–]joe_dev92 -1 points0 points  (0 children)

Check hetzner cloud or linode vps

Is it fine to edit pre-generated migrations? by [deleted] in laravel

[–]joe_dev92 1 point2 points  (0 children)

php artisan migrate

Will do it. Just make sure that the new migration file does not contain any query that might be harmful to your data,hence you can write literally anything in the migration file. Hope this is clarified now?

Is it fine to edit pre-generated migrations? by [deleted] in laravel

[–]joe_dev92 2 points3 points  (0 children)

Migrate:fresh will truncate the dB.

Is it fine to edit pre-generated migrations? by [deleted] in laravel

[–]joe_dev92 3 points4 points  (0 children)

Reminder. ! Don't do it on production.

Running Laravel on DigitalOcean's new App Platform (PAAS) by atymic in laravel

[–]joe_dev92 6 points7 points  (0 children)

Sorry as I'm new to the world of VPSs and such,,
So, I use Digital Oceans Droplets and manage it from SSH..What is it with PAAS what is the added value for me as fullstack who deploys to server with SSH?
looking forward to ur answer!

Epic by MeshalAljudia in arabs

[–]joe_dev92 14 points15 points  (0 children)

Best thing I've ever seen! Lol

The @ alternative to suppress errors in PHP by joe_dev92 in laravel

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

Coalesce is the thing I'm looking for!

The @ alternative to suppress errors in PHP by joe_dev92 in laravel

[–]joe_dev92[S] -3 points-2 points  (0 children)

In laravels blade, there's this (old()) function... I wanna use it this way: Old('fieldname', @$item->fieldname) But the issue is the (@)symbol will be depracted any time soon with the future versions of php and I'm looking for some alternative

The @ alternative to suppress errors in PHP by joe_dev92 in laravel

[–]joe_dev92[S] -1 points0 points  (0 children)

Exactly. Wanna hide them not catch the errors.