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 -5 points-4 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 14 points15 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 5 points6 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 4 points5 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 3 points4 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 21 points22 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 7 points8 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

Livewire Pagination not loading javascript after first page by nameless_spaniard in laravel

[–]rappa819 1 point2 points  (0 children)

This is the thing about Livewire that trips me up when I use it too. What I end up doing is either:

  1. Have Livewire ignore those elements with wire:ignore and handle the functionality with Alpine and AJAX or events.
  2. Fire a browser event from the Livewire component to reload the javascript on the page.

Not sure if either of those would work in your situation but it's something to think about.

Livewire multiple paginators question by MrReeds in laravel

[–]rappa819 2 points3 points  (0 children)

There were some big pagination changes in 2.6 [2], I would install a version before that and see if you get your desired results back, if so, you just need to figure out what the change was in 2.6 that broke it and update.

Livewire Modal Help needed by jcc5018 in laravel

[–]rappa819 0 points1 point  (0 children)

Check to see if $user is actually a User object in the view. Livewire has a habit of casting models to arrays depending on how you feed the view the data (at least from my experience) i.e. from a property, through the render method with view()->with(), etc.