@extends('layouts.app') @section('page-title', 'Import Transactions') @section('content')

Import from Google Sheets

@if(! $configured)
Google Sheets is not yet configured. See docs/GOOGLE_SHEETS.md in the project for setup steps. Until then, use CSV upload below.
@else
Spreadsheet ID: {{ $spreadsheetId }}
@csrf
Expected columns: transaction_date, type, source, bank_account, amount, reference, counterparty, description
@endif

Or upload a CSV

CSV must have headers in the first row: transaction_date,type,source,bank_account,amount,reference,counterparty,description
@csrf
@endsection