Store time ranges for index sites.

This commit is contained in:
2025-02-06 11:53:40 +01:00
parent 4c43bf2193
commit 3884a54539
9 changed files with 61 additions and 9 deletions

View File

@@ -4,6 +4,7 @@ namespace App\Http\Controllers\Api;
use App\Http\Controllers\Controller;
use App\Models\Invoice;
use App\Models\Option;
use App\Models\Payment;
use Illuminate\Http\JsonResponse;
use Illuminate\Http\Request;
@@ -15,6 +16,9 @@ class PaymentController extends Controller
*/
public function indexFilter($from = null, $end = null): JsonResponse
{
Option::updateOrCreate(['name' => 'payment_from'], ['value' => $from]);
Option::updateOrCreate(['name' => 'payment_end'], ['value' => $end]);
return response()->json(Payment::whereBetween('payment_date', [$from, $end])->with(['invoice'])->orderBy('payment_date', 'desc')->get());
}