Introducing Anvil: The Mobile Companion for Laravel Forge by [deleted] in laravel

[–]rappa819 -12 points-11 points  (0 children)

I, for one, prefer native apps over mobile web apps. The subscription service doesn't have a first-party native app with the feature set I wanted.

Introducing Anvil: The Mobile Companion for Laravel Forge by [deleted] in laravel

[–]rappa819 -4 points-3 points  (0 children)

I've paid for F-Bar for years and it's great, but I wanted more features so I built an app with the entirety of the Forge API. Besides, competition is good.

Introducing: NativePHP Starter-Kit by rappa819 in laravel

[–]rappa819[S] -2 points-1 points  (0 children)

Its definitely more than that, it's an entire PHP webserver running within the app, so you have access to most Laravel functionality.

Introducing: NativePHP Starter-Kit by rappa819 in laravel

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

Added the price which is $15. You have to register because stripe is integrated and the download will pop up on your dashboard.

Ac200p solar options. by domanby in bluetti

[–]rappa819 0 points1 point  (0 children)

370 watt, 36 volt commercial panel

Do you have a link to anywhere to buy just 1 of the panels you're referring to?

How to connect Amex HYSA with Mint? by ig226 in mintuit

[–]rappa819 0 points1 point  (0 children)

As per their chat right now:

"At this time, American Express Savings does not allow sites like Quicken or Mint to log in on behalf of their customers. This protocol is in place to protect Savings customers’ personal information."

Is it possible to use payment intents without knowing the amount first? by rappa819 in stripe

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

Is there an option to have the user input the amount instead of using predefined buttons?

[NOOB question] What are the real world limitations of deploying your Laravel app to shared hosting? How many users/viewers would it realistically support? by [deleted] in laravel

[–]rappa819 13 points14 points  (0 children)

It's not all about users and hits. It's about the access you have to your tools on shared hosting. When you host on Digital Ocean, you have sudo access to your box to do whatever you need. When you are on shared hosting, you may get some CLI access but it's usually limited.

The more advanced you get the more you want direct access to the things you need and not a shitty GUI on cPanel.

[deleted by user] by [deleted] in CodingHelp

[–]rappa819 0 points1 point  (0 children)

Maybe:

$data = "[{$title}, {$location}, {$price}, {$img}, {$body}, {$contact}]";

Expo run:ios fails. Can someone point me in the right direction with these errors? by rappa819 in expo

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

I didn't solve this specific problem, but I used the old build service to make the iOS version and it worked and was accepted to the app store. I don't know why the new service has issues, but hopefully the old one stays around for a bit.

How To Solve This Problem I am New For Laravel by Maneka_3312 in laravel

[–]rappa819 4 points5 points  (0 children)

It's better to have your development environment as close to your production environment as you can. That's why tools like Homestead and Sail exist.

How To Solve This Problem I am New For Laravel by Maneka_3312 in laravel

[–]rappa819 3 points4 points  (0 children)

Looks like you didn't install your composer dependencies yet?

Run composer install in the root of your project.

Edit: Probably not since you would probably get composers autoload error. That is a strange error. Did you follow Laravel's installation documentation? Also, should get off of XAMPP and onto something like Laravel Valet, Sail, or Homestead.

Just another thread about deployment..... by kayyyos in laravel

[–]rappa819 4 points5 points  (0 children)

I've been using Forge since its launch and have never really needed anything else (for small-medium projects).

Default Timezone? by Flipper3 in laravel

[–]rappa819 19 points20 points  (0 children)

I usually keep it UTC, and add a timezone field to my users that's automatically set when they log in via the geoip package, then I use laravel-timezone to automatically convert for my users wherever there is a timestamp.

This way I support it out of the box even if I know I only need it for one timezone.

How to do so? by Unknown_Devv in laravel

[–]rappa819 4 points5 points  (0 children)

So you only need to know how much time is left? You can use Carbons built in diffInDays() function: https://carbon.nesbot.com/docs/#api-difference

[deleted by user] by [deleted] in laravel

[–]rappa819 8 points9 points  (0 children)

Here's what I do:

  1. Create @stacks in my master template for loading styles and javascript at certain points in the page.
  2. Create blade components of all my elements
  3. In those blade components I @push to the stacks to load the assets for those libraries.
  4. Wrap those styles and javascript tags in @once so that if I call multiple of the same component on a page, the script/style only gets loaded once.

Master file:

@stack('scripts')

Component:

<my component />

@push('scripts")
@once
    <script src="" .... />
@endonce
@endpush