belongsTo(Cierre::class, 'cierre')->findOne(); } public function tipo() { return $this->belongsTo(TipoEstadoCierre::class, 'tipo')->findOne(); } public function fecha(\DateTime $fecha = null) { if ($fecha == null) { return Carbon::parse($this->fecha, $this->container->get('settings')->app->timezone); } $this->fecha = $fecha->format('Y-m-d'); } }