@php
    $tipiVeicoli = [
        'autoveicolo' => 'car',
        'bus' => 'bus',
        'camper' => 'bus',
        'ciclomotore' => 'motorcycle',
        'motociclo' => 'motorcycle',
    ];
    $tipiSoste = [
        'std' => 'Standard',
        'gio' => 'Giornaliera',
        'fse' => 'Fine sett. (Ven-Dom)',
        'set' => 'Settimanale',
        'men' => 'Mensile',
    ];
    @endphp