- Nuevo modulo de historial de cambios (ServicioHistorial) - Observer para tracking automatico de cambios en servicios - Correccion de variables auxiliar en ServiciosController - Actualizacion de configuraciones y migraciones - Endpoint para consultar historial de cambios Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
32 lines
570 B
PHP
Executable File
32 lines
570 B
PHP
Executable File
<?php
|
|
|
|
namespace App\Http\Requests\Reportes;
|
|
|
|
use Illuminate\Foundation\Http\FormRequest;
|
|
|
|
class EncuestasGeneralRequest extends FormRequest
|
|
{
|
|
/**
|
|
* Determine if the user is authorized to make this request.
|
|
*
|
|
* @return bool
|
|
*/
|
|
public function authorize()
|
|
{
|
|
return true;
|
|
}
|
|
|
|
/**
|
|
* Get the validation rules that apply to the request.
|
|
*
|
|
* @return array
|
|
*/
|
|
public function rules()
|
|
{
|
|
return [
|
|
'sucursal' => 'alpha_num|required',
|
|
'mes' => 'required'
|
|
];
|
|
}
|
|
}
|