@extends('layouts.admin') @section('title', 'Finance Settings') @section('page-title', 'Finance Settings') @section('breadcrumbs') Settings chevron_right Finance @endsection @section('content')
@if (session('success'))
check_circle {{ session('success') }}
@endif @if (session('error'))
error {{ session('error') }}
@endif @if($tab === 'currency')

Currency Settings

Manage the currencies available for your invoices and estimates.

search
filter_list
Currency Name Symbol Code Status Default Actions
Rows per page:
Loading...
@elseif($tab === 'tax')
search
filter_list
Group Name Components Total Rate Created On Status Actions
Rows per page:
Loading...
@elseif($tab === 'payment-gateway')

Payment Gateway Settings

Configure payment gateways for online payments on invoices and receipts.

PP

PayPal

Accept payments via PayPal

@csrf @method('PUT')
info

How to get PayPal credentials:

  1. Log in to your PayPal Developer account
  2. Go to Dashboard → My Apps & Credentials
  3. Create a new app or use existing one
  4. Copy the Client ID and Secret
S

Stripe

Accept payments via Stripe

@csrf @method('PUT')
info

How to get Stripe credentials:

  1. Log in to your Stripe Dashboard
  2. Go to Developers → API keys
  3. Copy the Publishable key and Secret key
  4. For webhooks, go to Developers → Webhooks
@endif
@endsection