'nullable|string|min:2', 'tld_id' => 'required|exists:tlds,id', 'domain_registrar_id' => 'required|exists:domain_registrars,id', 'registrar_account' => 'nullable|string', 'registrar_ns' => 'nullable|string', 'registrar_username' => 'nullable|string', 'connect_at' => 'nullable|date', 'start_at' => 'nullable|date', 'expire_at' => 'nullable|date|after:start_at', 'recur_schedule' => 'nullable|int', // @todo insure value is at least 1 yr and not higher than Invoice::billing_periods ]; } /* RELATIONS */ public function registrar() { return $this->belongsTo(DomainRegistrar::class,'domain_registrar_id'); } }