Files
Verde-Web/update_trip.php

13 lines
415 B
PHP

<?php
require __DIR__ . '/vendor/autoload.php';
$app = require_once __DIR__ . '/bootstrap/app.php';
$app->make(Illuminate\Contracts\Console\Kernel::class)->bootstrap();
$trip = App\Models\Trip::where('trip_number', 'TRIP-QC-202607030520VtHv')->first();
if ($trip) {
$trip->update(['status' => 'completed']);
echo "Updated: " . $trip->trip_number . " to completed\n";
} else {
echo "No trip found\n";
}